This query is used to count the number of different distinct conditions (condition_concept_id) of all persons. The input to the query is a value for a concept identifier.
Input:
Parameter |
Example |
Mandatory |
Notes |
condition_concept_id |
201820 |
Yes |
Condition concept identifier for 'Diabetes mellitus' |
Sample query run:
The following is a sample run of the query. The input parameters are highlighted in blue
SELECT count(c.condition_concept_id) conditions_count,
c.person_id
FROM condition_occurrence c
WHERE condition_concept_id = 201820
GROUP BY c.person_id
ORDER BY 1 DESC
Output:
Output field list:
Field |
Description |
conditions_count |
Number of conditions recorded for the person |
person_id |
Person identifier |
Sample output record:
Field |
Description |
conditions_count |
39 |
person_id |
20017834818 |
|