Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Month-Over-Month Retention

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

Your question is SQL Month-Over-Month Retention. 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

Unity Ads marketing analytics needs a month-over-month view of active player retention. Using transactional activity data, write a PostgreSQL query that measures how many users active in the previous month returned in each subsequent month.

A user is active in a month when they have at least one transaction with status = 'completed'. Only activity from January through April 2025 should be analyzed. Users must exist in the users table.

Requirements

  1. Deduplicate users to one row per calendar month before calculating retention.
  2. For each month with a prior month, return the retained active-user count and the prior month active-user count.
  3. Calculate the retention rate as retained_users / prior_month_active_users * 100, rounded to two decimal places.
  4. Sort results chronologically and exclude January because it has no prior month in the analysis period.

Schema

users
ColumnTypeDescription
user_idPKINTUnity player identifier
signup_dateDATEPlayer signup date
acquisition_channelVARCHAR(40)Marketing acquisition source
transactions
ColumnTypeDescription
transaction_idPKINTTransaction identifier
user_idINTPlayer associated with the transaction
occurred_atTIMESTAMPTransaction timestamp
statusVARCHAR(20)Transaction status
amount_usdNUMERIC(10,2)Transaction amount in USD
Tablesuserstransactions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results