Permalink
Browse files

fix GU being negative, fix comment, ref #204

  • Loading branch information...
1 parent 0060613 commit a6071a1c25f29c39b10439d35f137441e14f1d49 @alistairewj alistairewj committed May 16, 2017
Showing with 2 additions and 2 deletions.
  1. +2 −2 concepts/firstday/urine-output-first-day.sql
@@ -11,7 +11,7 @@ select
-- volumes associated with urine output ITEMIDs
, sum(
-- we consider input of GU irrigant as a negative volume
- case when oe.itemid = 227489 then -1*VALUE
+ case when oe.itemid = 227488 then -1*VALUE
else VALUE end
) as UrineOutput
from icustays ie
@@ -39,7 +39,7 @@ where itemid in
40096, -- "Urine Out Ureteral Stent #1"
40651, -- "Urine Out Ureteral Stent #2"
--- these are the most frequently occurring urine output observations in CareVue
+-- these are the most frequently occurring urine output observations in MetaVision
226559, -- "Foley"
226560, -- "Void"
226561, -- "Condom Cath"

0 comments on commit a6071a1

Please sign in to comment.