From 187cbbb9fdb97c76a3bb731fe958dd34adc4b867 Mon Sep 17 00:00:00 2001 From: BreadFeet <72549510+BreadFeet@users.noreply.github.com> Date: Sun, 12 Jul 2026 12:49:40 +0900 Subject: [PATCH] Revise comment for HADM_ID column in ADMISSIONS table Updated comment for ADMISSIONS.HADM_ID to clarify its purpose. ROW_ID is the primary key. --- mimic-iii/buildmimic/postgres/postgres_add_comments.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mimic-iii/buildmimic/postgres/postgres_add_comments.sql b/mimic-iii/buildmimic/postgres/postgres_add_comments.sql index 60f070a4b..60b6312dd 100644 --- a/mimic-iii/buildmimic/postgres/postgres_add_comments.sql +++ b/mimic-iii/buildmimic/postgres/postgres_add_comments.sql @@ -57,7 +57,7 @@ COMMENT ON COLUMN ADMISSIONS.ROW_ID is COMMENT ON COLUMN ADMISSIONS.SUBJECT_ID is 'Foreign key. Identifies the patient.'; COMMENT ON COLUMN ADMISSIONS.HADM_ID is - 'Primary key. Identifies the hospital stay.'; + 'Identifies the hospital stay.'; COMMENT ON COLUMN ADMISSIONS.ADMITTIME is 'Time of admission to the hospital.'; COMMENT ON COLUMN ADMISSIONS.DISCHTIME is