Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

7-Day Rolling Average Conversions

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

Your question is 7-Day Rolling Average Conversions. 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

Corsair's Marketing Analytics team wants to monitor conversion trends for a campaign promoting the Corsair K70 RGB keyboard. Write a PostgreSQL query that reports daily conversions and smooths short-term variation with a 7-day rolling average.

Requirements

  1. Return every date from June 1 through June 7, 2025, including dates with zero conversions.
  2. Restrict results to the Corsair K70 RGB campaign by joining the campaign metadata table.
  3. Count conversions per day and calculate the average of the current day and up to the six preceding calendar days.
  4. Return results in chronological order and round the rolling average to two decimal places.

Schema

campaigns
ColumnTypeDescription
campaign_idPKINTEGERUnique campaign identifier
campaign_nameVARCHAR(100)Campaign or promoted Corsair product name
channelVARCHAR(50)Marketing acquisition channel
campaign_conversions
ColumnTypeDescription
conversion_idPKINTEGERUnique conversion event identifier
campaign_idINTEGERCampaign associated with the conversion
conversion_dateDATEDate on which the conversion occurred
sourceVARCHAR(50)Detailed traffic source
Tablescampaignscampaign_conversions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results