We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec8adf6 commit 3deed06Copy full SHA for 3deed06
1 file changed
mimic-iv/concepts/documentation/vitamin_c_emar.sql
@@ -0,0 +1,10 @@
1
+-- Candidate Vitamin C administrations in emar (#1962).
2
+
3
+SELECT medication, COUNT(*) AS n
4
+FROM hosp.emar
5
+WHERE LOWER(medication) LIKE '%ascorbic%'
6
+ OR LOWER(medication) LIKE '%vitamin c%'
7
+ OR LOWER(medication) LIKE '%vit c%'
8
+GROUP BY medication
9
+ORDER BY n DESC
10
+LIMIT 50;
0 commit comments