This query generates the list of all vocabularies in the CONCEPT table (Standard and non-standard), their class, level and frequency.
SELECT
vocabulary_id AS vocabulary_id,
concept_class_id AS concept_class_id,
standard_concept AS standard_concept,
COUNT(*)::integer AS num_records
FROM @vocab.concept
GROUP BY
vocabulary_id,
concept_class_id,
standard_concept
ORDER BY vocabulary_id, concept_class_id, standard_concept
;
None
| Field | Description | | --- | --- | | vocabulary_id | OMOP Vocabulary ID | | concept_class | Concept Class | | standard_concept | 'S' if concept is standard, 'C' if a classification concept or empty if non-standard.| | num_records | Number of concepts |
| Field | Value | | --- | --- | | vocabulary_id | SNOMED | | concept_class | Procedure | | standard_concept | 'S' | | num_records | 20286 |
https://github.com/OHDSI/CommonDataModel/wiki/
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.