This query extracts all synonyms in the vocabulary for a given Concept ID.
SELECT
c.concept_id,
s.concept_synonym_name
FROM @vocab.concept AS c
JOIN @vocab.concept_synonym AS s ON c.concept_id = s.concept_id
WHERE c.concept_id = $1
;
| Parameter | Example | Mandatory | Notes | | --- | --- | --- | -------------------- | | Concept ID | 192671 | Yes | GI - Gastrointestinal hemorrhage |
| Field | Description | | --- | ----------------------------- | | Concept_ID | Unique identifier of the concept related to the input concept | | Concept_Synonym_Name | Synonym of the concept |
| Field | Value | | --- | --- | | Concept_ID | 192671 | | Concept_Synonym_Name | GI bleeding |
https://github.com/OHDSI/CommonDataModel/wiki/
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.