Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling 7-Day Average with Window Functions

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

Your question is Rolling 7-Day Average with Window Functions. Start with the requirements and the three 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

Medpace clinical data analysts need to monitor patient measurements across research sites. Write a PostgreSQL query that calculates each patient's rolling 7-calendar-day average and ranks patients within their site based on their latest available rolling average.

Requirements

  1. Join the Medpace site, patient, and measurement data.
  2. Calculate a rolling average for each patient, including the measurement date and the six preceding calendar days.
  3. Rank patients within each site by their latest rolling average in descending order. Patients with NULL averages must rank last.
  4. Return only patients with at least one measurement, while retaining every measurement row and repeating the patient's site rank on each row.
  5. Order the output by site, patient, and measurement date.

Schema

research_sites
ColumnTypeDescription
site_idPKINTResearch site identifier
site_nameVARCHAR(100)Medpace research site name
patients
ColumnTypeDescription
patient_idPKINTPatient identifier
site_idINTResearch site assigned to the patient
patient_nameVARCHAR(100)Patient display name
patient_measurements
ColumnTypeDescription
measurement_idPKINTMeasurement identifier
patient_idINTPatient associated with the measurement
measurement_dateDATEDate on which the measurement was recorded
measurement_valueNUMERIC(8,2)Recorded clinical measurement
Tablesresearch_sitespatientspatient_measurements
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results