Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Rolling 30-Day Active Users
00:00
5 left

Rolling 30-Day Active Users

HardSQL · PostgreSQL

Problem

BCG wants to monitor engagement across its internal digital products and analytics surfaces. Using a raw event log, calculate the number of unique users active during the trailing 30 calendar days for each date in the event range.

Write a PostgreSQL query that produces one row per calendar date from the minimum through maximum event date.

Requirements

  1. Count each non-null user_id only once within each 30-day window.
  2. Include the current date and the preceding 29 calendar days in each window.
  3. Include dates with no events between the minimum and maximum event dates.
  4. Sort the output chronologically by date.

Schema

raw_event_log
ColumnTypeDescription
event_idPKINTUnique event identifier
user_idINTUser who generated the event
event_timestampTIMESTAMPTimestamp when the event occurred
event_typeVARCHAR(30)Type of user event
Tablesraw_event_log
Interviewer

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