Skip to content

Commit

Permalink
fix: correct schema name to use physionet-data identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
alistairewj committed Dec 9, 2022
1 parent 45faad0 commit b321618
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mimic-iii/concepts/fluid_balance/crystalloid_bolus.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ with t1 as
when mv.amountuom = 'ml'
then mv.amount
else null end) as amount
from inputevents_mv mv
from `physionet-data.mimiciii_clinical.inputevents_mv` mv
where mv.itemid in
(
-- 225943 Solution
Expand Down Expand Up @@ -47,7 +47,7 @@ with t1 as
, cv.charttime
-- carevue always has units in millilitres
, round(cv.amount) as amount
from inputevents_cv cv
from `physionet-data.mimiciii_clinical.inputevents_cv` cv
where cv.itemid in
(
30015 -- "D5/.45NS" -- mixed colloids and crystalloids
Expand Down Expand Up @@ -155,4 +155,4 @@ select
, sum(amount) as crystalloid_bolus
from t2
group by t2.icustay_id, t2.charttime
order by icustay_id, charttime;
;

0 comments on commit b321618

Please sign in to comment.