Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling Enrollment Across Sites

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

Your question is Rolling Enrollment Across Sites. 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

Business context

Dana-Farber Cancer Institute's clinical research teams monitor enrollment across trial sites to identify changes in recruitment pace. You are given site metadata and patient enrollment records.

Task

Write a PostgreSQL query that reports monthly enrollment and a rolling three-month average for every active trial site from January through April 2025.

Requirements

  1. Aggregate patient_count by site and calendar month, treating NULL counts as zero.
  2. Include active sites for every month in the requested period, including months with no enrollment records.
  3. Use a window function partitioned by site and ordered chronologically to calculate the average of the current month and up to the two preceding months.
  4. Return results ordered by site name and month.

Schema

trial_sites
ColumnTypeDescription
site_idPKINTUnique trial site identifier
site_nameVARCHAR(100)Clinical trial site name
trial_codeVARCHAR(20)Clinical trial identifier
site_statusVARCHAR(20)Current operational status of the site
enrollment_records
ColumnTypeDescription
enrollment_idPKINTUnique enrollment record identifier
site_idINTReferences the site receiving enrollment activity
enrollment_dateDATEDate of enrollment activity
patient_countINTNumber of patients enrolled in the record
Tablestrial_sitesenrollment_records
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results