Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rolling 7-Day Active Averages

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

Your question is Rolling 7-Day Active Averages. 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

Business Context

UST's analytics platform needs a daily engagement metric that smooths short-term fluctuations. The metric must count registered active users with at least one activity event and calculate a rolling seven-day average.

Task

Write a PostgreSQL query that returns results for January 1 through January 10, 2025.

Requirements

  1. Generate one row for every calendar date in the reporting period, including dates with no activity.
  2. Count distinct users whose account_status is active and who generated at least one event on each date.
  3. Calculate the rolling seven-day average using a window frame of ROWS BETWEEN 6 PRECEDING AND CURRENT ROW.
  4. Round the rolling average to two decimal places and order the output chronologically.

Schema

app_users
ColumnTypeDescription
user_idPKINTUnique registered user identifier
account_statusVARCHAR(20)Current account status, such as active or suspended
user_activity_events
ColumnTypeDescription
activity_idPKINTUnique activity event identifier
user_idINTUser associated with the activity event
occurred_atDATECalendar date when the event occurred
event_typeVARCHAR(30)Type of platform activity
Tablesapp_usersuser_activity_events
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results