-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e7743bf
commit 64d3087
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
WITH arb_drug AS ( | ||
SELECT DISTINCT | ||
drug | ||
, CASE | ||
WHEN UPPER(drug) LIKE '%AZILSARTAN%' THEN 1 | ||
WHEN UPPER(drug) LIKE '%CANDESARTAN%' THEN 1 | ||
WHEN UPPER(drug) LIKE '%IRBESARTAN%' THEN 1 | ||
WHEN UPPER(drug) LIKE '%LOSARTAN%' THEN 1 | ||
WHEN UPPER(drug) LIKE '%OLMESARTAN%' THEN 1 | ||
WHEN UPPER(drug) LIKE '%TELMISARTAN%' THEN 1 | ||
WHEN UPPER(drug) LIKE '%VALSARTAN%' THEN 1 | ||
ELSE 0 | ||
END AS arb | ||
FROM `physionet-data.mimiciv_hosp.prescriptions` | ||
) | ||
|
||
SELECT | ||
pr.subject_id | ||
, pr.hadm_id | ||
, pr.drug AS arb | ||
, pr.starttime | ||
, pr.stoptime | ||
FROM | ||
`physionet-data.mimiciv_hosp.prescriptions` pr | ||
INNER JOIN arb_drug | ||
ON | ||
pr.drug = arb_drug.drug | ||
WHERE | ||
arb_drug.arb = 1 | ||
; |