Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Month-Over-Month Retention
00:00
5 left

SQL Month-Over-Month Retention

MediumSQL · PostgreSQL

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
Interviewer

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