Clinical Operations Analytics Path · Mission 1 of 25Easy

Browse the cardiology codebook

Get hands-on with dim_icd — the ICD-10 reference table that anchors every clinical SQL query. Practice basic single-table SELECT, WHERE on a categorical field, and ORDER BY before any joins enter the picture.

The Brief

Maya ThompsonCoding Managerslack-dm

Welcome aboard. Before you touch any encounter data, you need to know what's in the codebook. Pull every ICD-10 code in the Circulatory body system from dim_icd — give me the code, description, CCSR clinical category, whether it's flagged chronic, and whether it maps to a CMS-HCC. Sort alphabetically by icd_code so the cardiology codes line up. This is the codebook view our coders see when they start a chart — getting comfortable with it now will save you in every mission downstream.

You'll practice

Single-table SELECTWHERE categoryORDER BY

Tables & columns available

dim_icddim7 columns
ColumnTypeKey
icd_codeTEXTPK
icd_descriptionTEXT
ccsr_categoryTEXT
ccsr_descriptionTEXT
body_systemTEXT
is_chronicINT
hcc_flagINT

Hints (3)

Each hint you reveal reduces the XP you can earn. Try the query first.

Hint 1

Single-table filtered SELECT. dim_icd is the only table you need.

Hint 2

Filter on the body_system TEXT column — the briefing names the body region; the column groups codes by anatomical category (cardiology codes share one bucket).

Hint 3

Sort alphanumerically by the ICD code so the codebook reads in registry order.