Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
MAU With Event Frequency
00:00
5 left

MAU With Event Frequency

MediumSQL · PostgreSQL

Problem

Write a SQL query to find the monthly active users who signed up in the last 90 days and have performed a specific event more than five times.

Assume the specific event is docker_desktop_download. Use the current date to determine the 90-day signup window.

Output

  1. One row per activity month.
  2. Columns: activity_month and active_users.
  3. Include only months containing users who performed the specified event more than five times during that month.
  4. Order by activity_month ascending.

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
emailVARCHAR(255)User email address
signup_dateDATEDate the user signed up
events
ColumnTypeDescription
event_idPKINTUnique event identifier
user_idINTUser associated with the event
event_nameVARCHAR(100)Name of the recorded event
event_atTIMESTAMPTimestamp when the event occurred
Tablesusersevents
Interviewer

Your question is MAU With Event Frequency. Start with the requirements and the two tables 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.