Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL for User Retention

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

Your question is SQL for User 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

Write a SQL query to analyze user retention over time using a transactions or activity table.

Calculate retention by signup month and the number of months since signup. Include users with no qualifying activity when determining each cohort's size.

Output

  1. One row per signup cohort and elapsed month with activity
  2. Columns: cohort_month, months_since_signup, retained_users, cohort_users, and retention_rate
  3. Include activity on or after signup, order by cohort_month and months_since_signup ascending, and report retention as a decimal rounded to four places

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
signup_dateDATEDate the user registered
activity
ColumnTypeDescription
activity_idPKINTUnique activity record identifier
user_idINTUser associated with the activity
activity_dateDATEDate of user activity
Tablesusersactivity
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results