Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Running 30-Day Active Users SQL

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

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

General Motors wants to monitor rolling engagement with OnStar connected vehicle services. Write a PostgreSQL query that calculates the number of distinct users active during the 30-day period ending on each reporting date.

Requirements

  1. Deduplicate repeated OnStar events for the same user on the same date using a SQL window function.
  2. Count distinct non-null users whose activity date falls between report_date - INTERVAL '29 days' and report_date, inclusive.
  3. Return every reporting date, including dates with no activity, ordered chronologically.

Schema

onstar_service_events
ColumnTypeDescription
event_idPKINTEGERUnique event identifier
user_idVARCHAR(20)Connected vehicle service user identifier
event_dateDATEDate of the OnStar service event
service_nameVARCHAR(40)Connected vehicle service used
reporting_dates
ColumnTypeDescription
report_datePKDATEDate for which active users are calculated
Tablesonstar_service_eventsreporting_dates
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results