+++
date = "2015-09-01T19:34:46-04:00"
title = "The procedures_icd table"
linktitle = "PROCEDURES_ICD"
weight = 33
toc = "true"
+++
Table source: Hospital database.
Table purpose: Contains ICD procedures for patients, most notably ICD-9 procedures.
Number of rows: 240,095
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 procedures were performed.
ICD9_CODE
ICD9_CODE
provides the ICD-9 code for the given procedure. This code can be joined to the D_ICD_PROCEDURES table to determine what procedure is recorded for the patient.