Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL for Monthly Active Users

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

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

Glassdoor wants to monitor engagement across its Jobs, Reviews, and Community experiences. Write a PostgreSQL query to calculate monthly active users, where an active user is an active Glassdoor member who generated at least one qualifying activity event during that calendar month.

Requirements

  1. Include only members whose account_status is active.
  2. Treat page_view, job_search, application, and review_view as qualifying events.
  3. Count each member once per calendar month, even when they generate multiple events.
  4. Return the month as YYYY-MM, the monthly active user count, and sort chronologically.

Schema

members
ColumnTypeDescription
member_idPKINTEGERUnique Glassdoor member identifier
account_statusVARCHAR(20)Current member account status
activity_events
ColumnTypeDescription
event_idPKINTEGERUnique activity event identifier
member_idINTEGERMember associated with the event
occurred_atTIMESTAMPTimestamp when the activity occurred
event_typeVARCHAR(30)Type of activity generated by the member
surfaceVARCHAR(30)Glassdoor product surface where the event occurred
Tablesmembersactivity_events
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results