Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Window Functions for Rolling Metrics
00:00
5 left

Window Functions for Rolling Metrics

HardSQL · PostgreSQL

Problem

Write a complex SQL query using window functions to compute a rolling average over a dynamic time window.

The window length is defined per reading by window_days; a NULL value uses a seven-day default. Include readings from the same account whose timestamps fall within the inclusive window ending at the current reading. NULL metric values must not affect the average.

Output

  1. One row per reading, including readings with no matching prior data
  2. Columns: account_name, reading_id, recorded_at, metric_value, window_days, rolling_average
  3. Order by account_name, recorded_at, and reading_id ascending

Schema

metric_readings
ColumnTypeDescription
reading_idPKINTUnique identifier for the reading
account_nameVARCHAR(100)Account associated with the reading
recorded_atTIMESTAMPTimestamp when the metric was recorded
metric_valueNUMERIC(10,2)Measured value used in the rolling average
window_daysINTInclusive lookback length in days; NULL defaults to seven
Tablesmetric_readings
Interviewer

Your question is Window Functions for Rolling Metrics. 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.