Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top Clinics by Patient Volume
00:00
5 left

Top Clinics by Patient Volume

MediumSQL · PostgreSQL

Problem

Oracle Health EHR operations leaders need a ranked view of clinic utilization. Write a PostgreSQL query to identify the five clinics with the highest patient volume during calendar year 2025.

Requirements

  1. Join clinics to visits and consider only visits with visit_status = 'completed' from 2025.
  2. Calculate patient volume as the number of distinct non-null patients per clinic, so repeat visits by one patient count once.
  3. Use a window function to assign a deterministic rank, returning exactly the top five clinics. Break volume ties by the smaller clinic_id.
  4. Return clinic_name, city, patient_volume, and clinic_rank, ordered by rank.

Schema

clinics
ColumnTypeDescription
clinic_idPKINTEGERUnique clinic identifier
clinic_nameVARCHAR(100)Oracle Health EHR clinic name
cityVARCHAR(80)Clinic city
visits
ColumnTypeDescription
visit_idPKINTEGERUnique visit identifier
clinic_idINTEGERAssociated clinic identifier
patient_idINTEGERPatient identifier
visit_dateDATEDate of the visit
visit_statusVARCHAR(20)Visit completion status
Tablesclinicsvisits
Interviewer

Your question is Top Clinics by Patient Volume. Start with the requirements and the two 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.