Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling 7-Day Revenue in SQL

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

Your question is Rolling 7-Day Revenue in SQL. 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

Publicis Sapient is analyzing daily revenue trends for an active-user reporting dashboard. Write a PostgreSQL query that calculates a rolling seven-day average of daily revenue for each active user from January 1 through January 7, 2024.

Requirements

  1. Aggregate multiple revenue events for the same user and calendar date into one daily revenue value.
  2. Include dates with no revenue as zero, so the rolling calculation represents calendar days rather than only transaction days.
  3. Use a window function partitioned by user and ordered by date. The window should include the current date and up to the six preceding calendar dates.
  4. Return active users, the date, daily revenue, and the rolling average, ordered by user and date.

Schema

users
ColumnTypeDescription
user_idPKINTEGERUnique user identifier
user_nameVARCHAR(100)User display name
is_activeBOOLEANWhether the user is active
revenue_events
ColumnTypeDescription
event_idPKINTEGERUnique revenue event identifier
user_idINTEGERUser associated with the revenue event
event_dateDATECalendar date of the event
event_typeVARCHAR(30)Revenue event category
amountNUMERIC(12,2)Revenue amount
Tablesusersrevenue_events
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results