Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Monthly Active Users Query

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

Your question is Monthly Active Users Query. 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

TransUnion CreditVision needs a monthly engagement metric showing how many eligible users interacted with the product. The source contains both user account status and timestamped product events.

Write a PostgreSQL query to calculate monthly active users from the events table.

Requirements

  1. Count each eligible user once per calendar month, even if the user generated multiple events.
  2. Include only users whose account_status is active.
  3. Treat login, report_view, and score_check as active events. Exclude other event types and rows with a NULL event name.
  4. Return one row per month, ordered chronologically, with the month start date and active user count.

Schema

users
ColumnTypeDescription
user_idPKINTEGERUnique user identifier
account_statusVARCHAR(20)Current account status
events
ColumnTypeDescription
event_idPKINTEGERUnique event identifier
user_idINTEGERUser who generated the event
occurred_atTIMESTAMPTimestamp when the event occurred
event_nameVARCHAR(30)Type of product event
Tablesusersevents
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results