Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
7-Day Rolling Lab Comparison Query
00:00
5 left

7-Day Rolling Lab Comparison Query

HardSQL · PostgreSQL

Problem

Write a SQL query using window functions to calculate each patient's 7-day rolling average lab value and compare it to their prior week.

Use lab_measurements as the source table. Treat multiple measurements on the same patient and date as one daily average, and preserve dates whose lab values are all NULL.

Output

  1. One row per patient and measurement date, ordered by patient_id, then measurement_date.
  2. Columns: patient_id, measurement_date, daily_lab_value, rolling_7_day_avg, prior_week_rolling_avg, change_from_prior_week, and comparison.
  3. Compare each rolling average with the value exactly seven calendar days earlier. Use no_prior_week when that date is unavailable.

Schema

lab_measurements
ColumnTypeDescription
measurement_idPKINTUnique laboratory measurement identifier
patient_idINTPatient identifier
measured_atDATEDate on which the lab value was measured
lab_valueNUMERIC(10,2)Numeric laboratory result
Tableslab_measurements
Interviewer

Your question is 7-Day Rolling Lab Comparison Query. Start with the requirements and the one table 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.