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

Month-Over-Month Active User Retention

HardSQL · PostgreSQL

Problem

Write a query to find the active user retention rate month-over-month, utilizing complex multi-table joins.

Use the provided user, session, subscription, plan, and region data. Treat a user as active in a month when they have a valid session, an active account, and an active subscription plan during that month.

Output

  1. One row per calendar month with activity data.
  2. Columns: month_start, active_users, previous_month_active_users, retained_users, and retention_rate_pct.
  3. Include months from the first through the last session month, including months with no activity. Order by month_start ascending.

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
region_idINTUser's assigned region
is_activeBOOLEANWhether the user account is active
user_sessions
ColumnTypeDescription
session_idPKINTUnique session identifier
user_idINTUser who created the session
session_started_atTIMESTAMPSession start timestamp
session_statusBOOLEANWhether the session is valid
subscriptions
ColumnTypeDescription
subscription_idPKINTUnique subscription identifier
user_idINTSubscribed user
plan_idINTSubscribed plan
started_atTIMESTAMPSubscription start timestamp
ended_atTIMESTAMPSubscription end timestamp
plans
ColumnTypeDescription
plan_idPKINTUnique plan identifier
is_activeBOOLEANWhether the plan is currently active
regions
ColumnTypeDescription
region_idPKINTUnique region identifier
region_codeVARCHAR(10)Short region code
Tablesusersuser_sessionssubscriptionsplansregions
Interviewer

Your question is Month-Over-Month Active User Retention. Start with the requirements and the five 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.