Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling Average Admissions SQL

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

Your question is Rolling Average Admissions SQL. 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

Stanford Medicine wants to monitor monthly patient admissions by hospital department. Write a PostgreSQL query that calculates a rolling three-month average for every department, including departments or months with no admissions.

Requirements

  1. Generate monthly rows for January through March 2024 for every department.
  2. Aggregate duplicate admission records within each department and month, treating missing admission counts as zero.
  3. Use a window function partitioned by department and ordered by month. The first month should average one month, the second should average two months, and the third should average all three months.
  4. Return department name, month, monthly admissions, and the rolling average rounded to two decimal places. Sort by department ID and month.

Representative Data

The data includes duplicate monthly records, a null admission count, departments without admissions, and an admission with no matching department.

Schema

hospital_departments
ColumnTypeDescription
department_idPKINTEGERUnique hospital department identifier
department_nameVARCHAR(100)Stanford Medicine department name
monthly_admissions
ColumnTypeDescription
admission_idPKINTEGERUnique admission aggregate record identifier
department_idINTEGERReferenced department identifier
admission_monthDATEFirst day of the month represented by the record
admission_countINTEGERNumber of admissions in the record
Tableshospital_departmentsmonthly_admissions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results