Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling Averages Across Batches

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

Your question is Rolling Averages Across Batches. 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

Recursion Pharmaceuticals needs to monitor metric stability across distinct laboratory batches in its high-throughput screening pipeline. Write a PostgreSQL query that calculates rolling 30-day averages for completed batches.

Requirements

  1. Join laboratory_batches to screening_metrics using batch_id.
  2. Include only completed batches and cell_viability measurements with non-null values.
  3. Aggregate multiple measurements from the same batch and date before calculating the rolling average.
  4. Calculate a calendar-based 30-day average per batch, including the current date and preceding 29 days. Return results ordered by batch and measurement date.

Schema

laboratory_batches
ColumnTypeDescription
batch_idPKVARCHAR(20)Unique laboratory batch identifier
batch_labelVARCHAR(100)Human-readable batch label
experiment_nameVARCHAR(120)Screening experiment name
batch_statusVARCHAR(20)Batch lifecycle status
screening_metrics
ColumnTypeDescription
metric_idPKINTUnique metric observation identifier
batch_idVARCHAR(20)Laboratory batch associated with the observation
measurement_dateDATEDate of metric measurement
metric_nameVARCHAR(60)Screening metric name
metric_valueDECIMAL(10,2)Observed metric value
Tableslaboratory_batchesscreening_metrics
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results