This query enables search of procedure domain of the vocabulary by keyword. The query does a search of standard concepts names in the PROCEDURE domain (SNOMED-CT, ICD9, CPT, SNOMED Veterinary, OPCS4, CDT ICD10PCS and HCPCS procedures) and their synonyms to return all related concepts.
This is a comprehensive query to find relevant terms in the vocabulary. It does not require prior knowledge of where in the logic of the vocabularies the entity is situated. To constrain, additional clauses can be added to the query. However, it is recommended to do a filtering after the result set is produced to avoid syntactical mistakes. The query only returns concepts that are part of the Standard Vocabulary, ie. they have concept level that is not 0. If all concepts are needed, including the non-standard ones, the clause in the query restricting the concept level and concept class can be commented out.
The following is a sample run of the query to run a search of the Procedure domain for keyword 'Fixation of fracture'.
SELECT DISTINCT
C.concept_id AS Entity_Concept_Id,
C.concept_name AS Entity_Name,
C.concept_code AS Entity_Code,
'Concept' AS Entity_Type,
C.concept_class_id AS Entity_concept_class_id,
C.vocabulary_id AS Entity_vocabulary_id,
C.valid_start_date AS Entity_valid_start_date,
C.valid_end_date AS Entity_valid_end_date
FROM @vocab.concept C
LEFT JOIN @vocab.concept_synonym S
ON C.concept_id = S.concept_id
WHERE C.vocabulary_id IN ('SNOMED','ICD9Proc','ICD10PCS','CPT4','CDT','HCPCS','SNOMED Veterinary','OPCS4')
AND C.domain_id = 'Procedure'
AND C.standard_concept = 'S'
AND (lower(c.concept_name) LIKE concat('%', lower($1::text), '%')
OR LOWER(S.concept_synonym_name) LIKE concat('%', lower($1::text), '%'));
| Parameter | Example | Mandatory | Notes | | --- | --- | --- | --- | | Keyword | 'artery bypass' | Yes | Procedure keyword search |
| Field | Description | | --- | --- | | Entity_Concept_ID | Concept ID of entity with string match on name or synonym concept | | Entity_Name | Concept name of entity with string match on name or synonym concept | | Entity_Code | Concept code of entity with string match on name or synonym concept | | Entity_Type | Type of entity with keyword match (consistent with other keyword search queries elsewhere). Since procedure search is restricted to standard concepts and synonyms, the entity type is always set to 'Concept' | | Entity_Concept_Class | Concept class of entity with string match on name or synonym concept | | Entity_Vocabulary_ID | Vocabulary the concept with string match is derived from as vocabulary ID |
| Field | Value | | --- | --- | | Entity_Concept_ID | 2107223 | | Entity_Name | Coronary artery bypass, using venous graft(s) and arterial graft(s); two venous grafts (List separately in addition to code for primary procedure) | | Entity_Code | 33518 | | Entity_Type | Concept | | Entity_Concept_Class | CPT-4 | | Entity_Vocabulary_ID | CPT-4 |
https://github.com/OHDSI/CommonDataModel/wiki/
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.