Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top Clinics by Patient Volume

MediumSQL · PostgreSQL00:00
Practice interviewer
In session
5 left
00:00

Your question is Top Clinics by Patient Volume. Start with the requirements and the two tables on the right.

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.

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
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results