Definition
Purpose
Section titled “Purpose”The mkb_mapping_ethnicity model provides mappings between EMIS codes and
ethnicity-related SNOMED mappings used by the medical knowledge base for
demographic standardisation.
Information
Section titled “Information”This mapping table enables translation of local EMIS ethnicity codes to SNOMED CT standard concepts. It supports demographic data standardisation and research reporting with standardised ethnicity classifications.
- snomed_concept_id (PK): The unique SNOMED concept for the ethnicity
- snomed_description_id (FK): Links to the SNOMED description text
- emis_code_id (FK): Links to the EMIS ethnicity code
Examples
Section titled “Examples”Get all ethnicity mappings for an organisation
SELECT *FROM hive.explorer_recruit.mkb_mapping_ethnicityLIMIT 100;Find mappings for a specific SNOMED concept
SELECT snomed_concept_id, snomed_description, emis_code_id, snomed_description_idFROM hive.explorer_recruit.mkb_mapping_ethnicityWHERE snomed_concept_id = '123456789'LIMIT 100;Find ethnicity mappings for a specific MKB version
SELECT *FROM hive.explorer_recruit.mkb_mapping_ethnicityWHERE _mkb_version = 'MKB-229'LIMIT 100;