Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Consecutive Months MAU SQL
00:00
5 left

Consecutive Months MAU SQL

MediumSQL · PostgreSQL

Problem

Write a SQL query to find the monthly active users on the Starbucks Rewards app who made purchases in consecutive months.

Use the users and purchases tables. Treat consecutive months as adjacent calendar months, regardless of the specific purchase dates. Multiple purchases by the same user in one month count once.

Output

  1. One row per month with qualifying users
  2. Columns: month_start and monthly_active_users
  3. Include only months with at least one qualifying user
  4. Order by month_start ascending

Schema

users
ColumnTypeDescription
user_idPKINTUnique Starbucks Rewards app user identifier
user_nameVARCHAR(100)User display name
purchases
ColumnTypeDescription
purchase_idPKINTUnique purchase identifier
user_idINTUser who made the purchase
purchase_dateDATEDate of purchase
purchase_channelVARCHAR(30)Purchase channel
Tablesuserspurchases
Interviewer

Your question is Consecutive Months MAU SQL. 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.