Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Acceptance and Revenue
00:00
5 left

SQL for Acceptance and Revenue

HardSQL · PostgreSQL

Problem

Write a SQL query to calculate each office's monthly treatment acceptance rate and average revenue per patient from appointment, treatment, and payment tables. Use completed appointments, attribute payments to the appointment month, and exclude cancelled appointments. Treat only accepted and declined treatments as treatment opportunities.

Output

  1. One row per office and calendar month, ordered by office_id, then month_start.
  2. Columns: office_id, month_start, treatment_acceptance_rate, and average_revenue_per_patient.
  3. Return zero for missing treatment or revenue values.

Schema

appointments
ColumnTypeDescription
appointment_idPKINTUnique appointment identifier
office_idINTDental office identifier
patient_idINTPatient identifier
appointment_dateDATEAppointment date
appointment_statusVARCHAR(20)Appointment status
treatments
ColumnTypeDescription
treatment_idPKINTUnique treatment record identifier
appointment_idINTRelated appointment identifier
treatment_statusVARCHAR(30)Treatment decision status
payments
ColumnTypeDescription
payment_idPKINTUnique payment identifier
appointment_idINTRelated appointment identifier
amountNUMERIC(12,2)Payment amount
payment_methodVARCHAR(30)Payment method
Tablesappointmentstreatmentspayments
Interviewer

Your question is SQL for Acceptance and Revenue. 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.