Definition
A comprehensive reference for clinical codes used within healthcare systems. It consolidates code information from multiple coding standards. Similar to the clinical code table but primarily focusing on SNOMED CT mappings for EMIS codes.
Information
Section titled “Information”The Codeable Concept model serves as a comprehensive reference for clinical codes used within healthcare systems. It consolidates code information from multiple coding standards, primarily focusing on SNOMED CT mappings for EMIS codes.
Each record in the model represents a unique clinical concept identified by a code_id, linked to its corresponding term and related identifiers in other coding systems. The model facilitates standardized data analysis by providing cross-references between different coding systems that may be used across healthcare applications.
Key features of this model include:
- Mapping between proprietary EMIS codes and standard SNOMED CT concepts
- References to fully specified SNOMED CT names
Constraint and Notes
Section titled “Constraint and Notes”Soft deletion: Whenis_deletedis true, data fields may be nullified in upstream transformations and should be excluded from most analytical queries. Primary keys and foreign keys are preserved so deleted linked records can be identified
Examples
Section titled “Examples”Find SNOMED concepts
Section titled “Find SNOMED concepts”SELECT term, snomed_concept_id, fully_specified_name, readv2_codeFROM hive.explorer_open_safely.codeable_conceptWHERE term LIKE '%diabetes%'ORDER BY termLIMIT 50Get proprietary EMIS codes
SELECT code_id, term, other_code_system, other_code, other_displayFROM hive.explorer_open_safely.codeable_conceptWHERE other_code_system IS NOT NULLLIMIT 100Map between code systems
-- Query showing the relationship between Read v2 and SNOMED CT codesSELECT readv2_code, term, snomed_concept_id, fully_specified_nameFROM hive.explorer_open_safely.codeable_conceptWHERE readv2_code IS NOT NULL AND snomed_concept_id IS NOT NULLORDER BY readv2_codeLIMIT 100