Definition
Purpose
Section titled “Purpose”The codeable_concept model provides coding concept metadata with terms,
alternate codes and SNOMED mappings from the anonymised extract.
Information
Section titled “Information”This master table contains coded concepts with their canonical and alternative representations. Each concept can map to multiple coding systems including SNOMED and Read v2 codes, enabling terminology translation and concept lookup.
- emis_code_id (PK): The unique identifier for the concept
- snomed_concept_id (FK): Links to the SNOMED concept this code maps to
- snomed_description_id (FK): Links to the SNOMED description
Examples
Section titled “Examples”Get all codeable concepts for an organisation
SELECT *FROM hive.explorer_recruit_anon.codeable_conceptWHERE organisation = 'EMIS'LIMIT 100;Find concepts with a SNOMED mapping
SELECT emis_code_id, term, snomed_concept_id, snomed_description_idFROM hive.explorer_recruit_anon.codeable_conceptWHERE snomed_concept_id IS NOT NULLLIMIT 100;Look up a specific EMIS code
SELECT emis_code_id, term, fully_specified_name, readv2_codeFROM hive.explorer_recruit_anon.codeable_conceptWHERE emis_code_id = 'A123'LIMIT 100;