Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Month-over-Month Active Patient Growth
00:00
5 left

Month-over-Month Active Patient Growth

MediumSQL · PostgreSQL

Problem

Write a query to find the month-over-month growth rate of active patients booking appointments on Zocdoc.

Use the patients and appointments tables. Treat an active patient as one whose is_active value is true and who has at least one appointment with a booked status in the month.

Output

  1. One row per calendar month with booking activity
  2. Columns: month, active_patient_count, previous_active_patient_count, and mom_growth_rate
  3. Express mom_growth_rate as a percentage rounded to two decimal places; return NULL when there is no prior month or the prior count is zero
  4. Sort chronologically by month

Schema

patients
ColumnTypeDescription
patient_idPKINTUnique patient identifier
patient_nameVARCHAR(100)Patient display name
is_activeBOOLEANWhether the patient is currently active
appointments
ColumnTypeDescription
appointment_idPKINTUnique appointment identifier
patient_idINTPatient associated with the appointment
booked_atTIMESTAMPTimestamp when the appointment was booked
statusVARCHAR(20)Appointment booking status
Tablespatientsappointments
Interviewer

Your question is Month-over-Month Active Patient Growth. 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.