Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top 10 Patients by Visits

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

Your question is Top 10 Patients by Visits. 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

Massachusetts General Hospital needs a patient-volume report for operational planning. Write a PostgreSQL query that identifies the 10 patients with the most qualifying visits recorded during calendar year 2025.

Requirements

  1. Count visits for each patient from 2025-01-01 through 2025-12-31.
  2. Exclude visits whose status is Cancelled or is NULL.
  3. Include patients with no qualifying visits, using a count of zero when necessary.
  4. Return the top 10 patients, ordered by visit count descending and patient_id ascending as a deterministic tie-breaker.

Schema

patients
ColumnTypeDescription
patient_idPKINTEGERUnique patient identifier
first_nameVARCHAR(50)Patient first name
last_nameVARCHAR(50)Patient last name
date_of_birthDATEPatient date of birth
visits
ColumnTypeDescription
visit_idPKINTEGERUnique visit identifier
patient_idINTEGERPatient associated with the visit
visit_dateDATEDate of the visit
statusVARCHAR(20)Visit status
encounter_typeVARCHAR(30)Type of clinical encounter
Tablespatientsvisits
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results