drug_exposure_start_date
SACT Drug Exposure
Source column Administration_Date. Converts text to dates.
Administration_DateSYSTEMIC ANTI-CANCER THERAPY ADMINISTRATION DATE is the date of the Systemic Anti-Cancer Therapy Drug Administration or the date an oral drug was initially dispensed to the PATIENT. SYSTEMIC ANTI-CANCER THERAPY ADMINISTRATION DATE
select
distinct
replace(NHS_Number, ' ', '') as NHS_Number,
Regimen,
lower(Drug_Name) as Drug_Name,
Actual_Dose_Per_Administration,
Administration_Measurement_Per_Actual_Dose,
Administration_Date
from omop_staging.sact_staging
Comment or raise an issue for this mapping.
Oxford Prescribing Drug Exposure
Source column beg_dt_tm. Converts text to dates.
beg_dt_tmThe begin date of the Drug that was initially dispensed to the PATIENT.
select
patient_identifier_Value,
beg_dt_tm,
end_dt_tm,
lower(replace(catalog, 'zzz', '')) as catalog,
lower(order_mnemonic) as order_mnemonic,
order_detail_display_line,
lower(rxroute) as rxroute,
strengthdoseunit,
strengthdose,
EVENT_ID
from ##duckdb_source##
Comment or raise an issue for this mapping.
Oxford Prescribing Drug Exposure (with Snomed)
Source column beg_dt_tm. Converts text to dates.
beg_dt_tmThe begin date of the Drug that was initially dispensed to the PATIENT.
select
patient_identifier_Value,
beg_dt_tm,
end_dt_tm,
order_detail_display_line,
order_mnemonic,
lower(rxroute) as rxroute,
strengthdoseunit,
strengthdose,
concept_identifier,
EVENT_ID
from ##duckdb_source##
where concept_identifier is not null
Comment or raise an issue for this mapping.
Oxford GP Drug Exposure
Source column LastIssueDate. Converts text to dates.
LastIssueDateLast Issue Date
select
distinct
d.NHSNumber,
e.LastIssueDate,
e.SuppliedCode,
e.Quantity,
e.Units
from omop_staging.oxford_gp_medication e
inner join omop_staging.oxford_gp_demographic d
on e.PatientIdentifier = d.PatientIdentifier
order by
d.NHSNumber,
e.LastIssueDate,
e.SuppliedCode,
e.Quantity,
e.Units