Counts the year of birth (year_of_birth) across all person records. All existing values for year of birth are summarized.
SELECT
year_of_birth,
COUNT(person_id)::integer AS num_persons
FROM @cdm.person
GROUP BY year_of_birth
ORDER BY year_of_birth
;
None
| Field | Description | | --- | --- | | year_of_birth | Year of birth of the patient | | num_persons | Number of patients in the dataset of specific year of birth |
| Field | Value | | --- | --- | | year_of_birth | 1950 | | num_persons | 389019 |
https://github.com/OHDSI/CommonDataModel/wiki/PERSON
num_persons
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.