This query is used to count conditions across all condition occurrence records stratified by condition occurrence type
Sample query run:
The following is a sample run of the query. The input parameters are highlighted in blue
SELECT concept_name AS condition_occurrence_type
, condition_type_concept_id
, count(*) AS occurrence_type_count
FROM condition_occurrence
JOIN vocabulary.concept ON concept_id = condition_type_concept_id
GROUP BY concept_name, condition_type_concept_id
Output:
Output field list:
Field |
Description |
condition_occurrence_type |
Name of the condition occurrence type |
condition_type_concept_id |
Concept identifier for condition type |
occurrence_types_count | Number of occurrence types |
Sample output record:
Field |
Description |
condition_occurrence_type |
EHR Chief Complaint |
condition_type_concept_id |
42894222 |
occurrence_types_count | 65445068 |
|