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

Rolling 30-Day Patient Visits SQL

MediumSQL · PostgreSQL

Problem

Write a complex SQL query utilizing window functions to track patient visits over a rolling 30-day window.

Use the provided patient, provider, and visit data. Include completed visits only, and count completed visits for the same patient from the current visit date through the preceding 29 calendar days.

Output

  1. One row per completed visit, including visit_id, patient_id, patient_name, visit_date, provider_name, and rolling_30_day_visits
  2. Use Unknown when a visit has no matching provider
  3. Order by patient_id, visit_date, then visit_id

Schema

patients
ColumnTypeDescription
patient_idPKINTUnique patient identifier
patient_nameVARCHAR(100)Patient's display name
date_of_birthDATEPatient date of birth
providers
ColumnTypeDescription
provider_idPKINTUnique provider identifier
provider_nameVARCHAR(100)Provider's display name
specialtyVARCHAR(80)Provider clinical specialty
visits
ColumnTypeDescription
visit_idPKINTUnique visit identifier
patient_idINTPatient receiving care
provider_idINTProvider associated with the visit
visit_dateDATEDate of the visit
statusVARCHAR(20)Visit status
Tablespatientsprovidersvisits
Interviewer

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