Skip to content

Commit

Permalink
add arb for duckdb/postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
alistairewj committed Aug 26, 2024
1 parent ccc6f75 commit 55e2080
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 0 deletions.
37 changes: 37 additions & 0 deletions mimic-iv/concepts_duckdb/medication/arb.sql
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
37 changes: 37 additions & 0 deletions mimic-iv/concepts_postgres/medication/arb.sql
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

0 comments on commit 55e2080

Please sign in to comment.