Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling Averages With Window Functions

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

Your question is Rolling Averages With Window Functions. 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

Zeta's Data Analyst team reviews campaign revenue trends in Zeta Campaign Manager. Write a PostgreSQL query that calculates a rolling average of reported daily revenue for active campaigns during the first five days of January 2025.

Requirements

  1. Join campaigns to their daily metrics and include only campaigns with status = 'active' and metrics from January 1 through January 5, 2025.
  2. Aggregate multiple metric rows for the same campaign and date into one daily_revenue value. Treat a day containing only NULL revenue values as zero.
  3. Calculate a three-observation rolling average using the current observation and up to the two preceding reported observations within each campaign. Round the result to two decimal places.
  4. Return results ordered by campaign name and metric date.

Schema

campaigns
ColumnTypeDescription
campaign_idPKINTCampaign identifier
campaign_nameVARCHAR(100)Campaign name
statusVARCHAR(20)Current campaign status
campaign_daily_metrics
ColumnTypeDescription
metric_idPKINTMetric row identifier
campaign_idINTReferences campaigns.campaign_id
metric_dateDATEDate on which the metric was recorded
revenueDECIMAL(10,2)Revenue reported by the metric row
Tablescampaignscampaign_daily_metrics
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results