+++
date = "2015-09-01T19:34:46-04:00"
title = "The diagnoses_icd table"
linktitle = "DIAGNOSES_ICD"
weight = 21
toc = "true"
+++
Table source: Hospital database.
Table purpose: Contains ICD diagnoses for patients, most notably ICD-9 diagnoses.
Number of rows: 651,047
Links to:
SUBJECT_ID
HADM_ID
ICD9_CODE
Name | PostgreSQL data type | Modifiers |
---|---|---|
ROW_ID | INT | not null |
SUBJECT_ID | INT | not null |
HADM_ID | INT | not null |
SEQ_NUM | INT | |
ICD9_CODE | VARCHAR(10) |
SUBJECT_ID
, HADM_ID
Identifiers which specify the patient: SUBJECT_ID
is unique to a patient and HADM_ID
is unique to a patient hospital stay.
SEQ_NUM
SEQ_NUM
provides the order in which the ICD diagnoses relate to the patient. ICD diagnoses are ordered by priority - and the order does have an impact on the reimbursement for treatment.
ICD9_CODE
ICD9_CODE
contains the actual code corresponding to the diagnosis assigned to the patient for the given row. Note that all codes, as of MIMIC-III v1.0, are ICD-9 codes.