Skip to content

Commit a84ed76

Browse files
committed
add missing column names
1 parent c6e8daa commit a84ed76

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

mimic-iv/concepts/postgres/treatment/ventilation.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@ WITH tm AS
203203
, vd2 as
204204
(
205205
SELECT vd1.stay_id, vd1.charttime
206+
, vd1.charttime_lead, vd1.ventilation_status
206207
, ventduration, new_ventilation_event
207208
-- create a cumulative sum of the instances of new ventilation
208209
-- this results in a monotonically increasing integer assigned

mimic-iv/concepts/treatment/ventilation.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,7 @@ WITH tm AS
201201
, vd2 as
202202
(
203203
SELECT vd1.stay_id, vd1.charttime
204+
, vd1.charttime_lead, vd1.ventilation_status
204205
, ventduration, new_ventilation_event
205206
-- create a cumulative sum of the instances of new ventilation
206207
-- this results in a monotonically increasing integer assigned

0 commit comments

Comments
 (0)