initial commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
Clinical coding cluster lookup
|
||||
==============================
|
||||
|
||||
Purpose:
|
||||
List SNOMED codes attached to maintained clinical coding clusters.
|
||||
|
||||
Use maintained clusters where possible instead of free-text matching on
|
||||
SNOMED descriptions.
|
||||
*/
|
||||
|
||||
SET CLUSTER_ID = 'DEPR_COD';
|
||||
|
||||
SELECT DISTINCT
|
||||
ccs."Cluster_ID",
|
||||
ccs."SNOMEDCode",
|
||||
ccs."SNOMEDDescription"
|
||||
FROM DATA_HUB.PHM."ClinicalCodingClusterSnomedCodes" ccs
|
||||
WHERE ccs."Cluster_ID" = $CLUSTER_ID
|
||||
ORDER BY ccs."SNOMEDDescription", ccs."SNOMEDCode";
|
||||
Reference in New Issue
Block a user