-
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
ccc6f75
commit 55e2080
Showing
2 changed files
with
74 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,37 @@ | ||
-- THIS SCRIPT IS AUTOMATICALLY GENERATED. DO NOT EDIT IT DIRECTLY. | ||
DROP TABLE IF EXISTS mimiciv_derived.arb; CREATE TABLE mimiciv_derived.arb AS | ||
WITH arb_drug AS ( | ||
SELECT DISTINCT | ||
drug, | ||
CASE | ||
WHEN UPPER(drug) LIKE '%AZILSARTAN%' OR UPPER(drug) LIKE '%EDARBI%' | ||
THEN 1 | ||
WHEN UPPER(drug) LIKE '%CANDESARTAN%' OR UPPER(drug) LIKE '%ATACAND%' | ||
THEN 1 | ||
WHEN UPPER(drug) LIKE '%IRBESARTAN%' OR UPPER(drug) LIKE '%AVAPRO%' | ||
THEN 1 | ||
WHEN UPPER(drug) LIKE '%LOSARTAN%' OR UPPER(drug) LIKE '%COZAAR%' | ||
THEN 1 | ||
WHEN UPPER(drug) LIKE '%OLMESARTAN%' OR UPPER(drug) LIKE '%BENICAR%' | ||
THEN 1 | ||
WHEN UPPER(drug) LIKE '%TELMISARTAN%' OR UPPER(drug) LIKE '%MICARDIS%' | ||
THEN 1 | ||
WHEN UPPER(drug) LIKE '%VALSARTAN%' OR UPPER(drug) LIKE '%DIOVAN%' | ||
THEN 1 | ||
WHEN UPPER(drug) LIKE '%SACUBITRIL%' OR UPPER(drug) LIKE '%ENTRESTO%' | ||
THEN 1 | ||
ELSE 0 | ||
END AS arb | ||
FROM mimiciv_hosp.prescriptions | ||
) | ||
SELECT | ||
pr.subject_id, | ||
pr.hadm_id, | ||
pr.drug AS arb, | ||
pr.starttime, | ||
pr.stoptime | ||
FROM mimiciv_hosp.prescriptions AS pr | ||
INNER JOIN arb_drug | ||
ON pr.drug = arb_drug.drug | ||
WHERE | ||
arb_drug.arb = 1 |
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,37 @@ | ||
-- THIS SCRIPT IS AUTOMATICALLY GENERATED. DO NOT EDIT IT DIRECTLY. | ||
DROP TABLE IF EXISTS mimiciv_derived.arb; CREATE TABLE mimiciv_derived.arb AS | ||
WITH arb_drug AS ( | ||
SELECT DISTINCT | ||
drug, | ||
CASE | ||
WHEN UPPER(drug) LIKE '%AZILSARTAN%' OR UPPER(drug) LIKE '%EDARBI%' | ||
THEN 1 | ||
WHEN UPPER(drug) LIKE '%CANDESARTAN%' OR UPPER(drug) LIKE '%ATACAND%' | ||
THEN 1 | ||
WHEN UPPER(drug) LIKE '%IRBESARTAN%' OR UPPER(drug) LIKE '%AVAPRO%' | ||
THEN 1 | ||
WHEN UPPER(drug) LIKE '%LOSARTAN%' OR UPPER(drug) LIKE '%COZAAR%' | ||
THEN 1 | ||
WHEN UPPER(drug) LIKE '%OLMESARTAN%' OR UPPER(drug) LIKE '%BENICAR%' | ||
THEN 1 | ||
WHEN UPPER(drug) LIKE '%TELMISARTAN%' OR UPPER(drug) LIKE '%MICARDIS%' | ||
THEN 1 | ||
WHEN UPPER(drug) LIKE '%VALSARTAN%' OR UPPER(drug) LIKE '%DIOVAN%' | ||
THEN 1 | ||
WHEN UPPER(drug) LIKE '%SACUBITRIL%' OR UPPER(drug) LIKE '%ENTRESTO%' | ||
THEN 1 | ||
ELSE 0 | ||
END AS arb | ||
FROM mimiciv_hosp.prescriptions | ||
) | ||
SELECT | ||
pr.subject_id, | ||
pr.hadm_id, | ||
pr.drug AS arb, | ||
pr.starttime, | ||
pr.stoptime | ||
FROM mimiciv_hosp.prescriptions AS pr | ||
INNER JOIN arb_drug | ||
ON pr.drug = arb_drug.drug | ||
WHERE | ||
arb_drug.arb = 1 |