Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Measure Retention After Product Launch

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

Your question is Measure Retention After Product Launch. Start with the requirements and the three 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

NovaPlay launched a major product update on 2024-04-01 and wants to understand whether user retention changed after the launch. Write a PostgreSQL query that uses a cohort table to compare retention for pre-launch and post-launch signup cohorts.

Requirements

  1. Treat each user's cohort as the month of their signup_date from the cohort_table.
  2. For each cohort month, calculate month 1 retention: the percentage of users who had at least one activity event in the calendar month immediately after their cohort month.
  3. Label each cohort as pre_launch or post_launch based on whether the cohort month is before 2024-04-01.
  4. Return one row per cohort month with cohort size, retained users, and retention rate rounded to 2 decimals.

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
signup_dateDATEDate the user signed up
countryVARCHAR(50)User country
cohort_table
ColumnTypeDescription
user_idPKINTUser identifier
cohort_monthDATEFirst day of the user's signup month
user_activity
ColumnTypeDescription
activity_idPKINTUnique activity event identifier
user_idINTUser identifier tied to the activity
activity_dateDATEDate of the activity event
activity_typeVARCHAR(50)Type of activity event
Tablesuserscohort_tableuser_activity
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results