Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for 30-Day ER Visits
00:00
5 left

SQL for 30-Day ER Visits

MediumSQL · PostgreSQL

Problem

Write a SQL query to find all patients who had a specific spine procedure and subsequently visited the emergency room within 30 days.

Assume the specific procedure is identified by procedure_code = 'LUMBAR_FUSION'. Return only the earliest qualifying emergency room visit for each patient.

Output

  1. One row per qualifying patient, with patient_id, patient_name, procedure_date, and er_visit_date.
  2. Include only visits occurring after the procedure and no later than 30 days afterward.
  3. Order by patient_id ascending.

Schema

patients
ColumnTypeDescription
patient_idPKINTUnique patient identifier
patient_nameVARCHAR(100)Patient's display name
procedures
ColumnTypeDescription
procedure_idPKINTUnique procedure identifier
patient_idINTPatient receiving the procedure
procedure_codeVARCHAR(50)Clinical procedure code
procedure_dateDATEDate the procedure occurred
encounters
ColumnTypeDescription
encounter_idPKINTUnique encounter identifier
patient_idINTPatient associated with the encounter
visit_typeVARCHAR(50)Type of healthcare encounter
visit_dateDATEDate of the encounter
Tablespatientsproceduresencounters
Interviewer

Your question is SQL for 30-Day ER Visits. 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.