Definition
A reference to original EMISWeb codes for translating a patient’s clinical information, like observations, diagnosis’ and treatments. Similar to the codeable concept table as it contains snomed codes but also contains national codes, readv2 codes etc.
Information
Section titled “Information”The clinical code model contains EMISWeb code ids and their category description, mapped SNOMED CT codes, as well as other national codes, a variety of standardised coding systems used for different purposes, defined by the NHS
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”Distinct EMIS Codes
Section titled “Distinct EMIS Codes”SELECT DISTINCT(emis_code_category_description)FROM hive.explorer_open_safely.clinical_codeORDER BY emis_code_category_description ASCDistinct National Codes for a category
Section titled “Distinct National Codes for a category”SELECTDISTINCT national_code,national_descriptionFROM hive.explorer_open_safely.clinical_codeWHERE national_code_category = 'PREFERRED COMMUNICATION LANGUAGE'