Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Clinical Criteria
00:00
5 left

SQL for Clinical Criteria

MediumSQL · PostgreSQL

Problem

Write a SQL query to extract patient records that meet these three specific clinical criteria.

For this exercise, identify patients under 18 as of January 1, 2025, with an asthma encounter showing oxygen saturation below 92%, and an active albuterol prescription. Return one row per qualifying patient and use only records satisfying all three criteria.

Output

  1. Return patient_id, patient_name, and latest_qualifying_encounter.
  2. Sort by patient_id ascending.

Schema

patients
ColumnTypeDescription
patient_idPKINTUnique patient identifier
patient_nameVARCHAR(100)Patient display name
date_of_birthDATEPatient date of birth
encounters
ColumnTypeDescription
encounter_idPKINTUnique encounter identifier
patient_idINTPatient associated with the encounter
encounter_dateDATEDate of clinical encounter
diagnosis_codeVARCHAR(20)Diagnosis code recorded for the encounter
oxygen_saturationINTOxygen saturation percentage
medications
ColumnTypeDescription
medication_idPKINTUnique medication record identifier
patient_idINTPatient associated with the prescription
medication_nameVARCHAR(100)Medication name
statusVARCHAR(20)Prescription status
Tablespatientsencountersmedications
Interviewer

Your question is SQL for Clinical Criteria. Start with the requirements and the three tables in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.