Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Compare User Retention by Cohort

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

Your question is Compare User Retention by Cohort. 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

StreamWave wants to compare monthly retention across signup cohorts. Write a PostgreSQL query that calculates retention by cohort month over time.

Requirements

  1. Define each user's cohort as the month of their signup_date.
  2. For each cohort, count how many distinct users were active in month 0, month 1, and month 2 based on activity_date.
  3. Return the cohort size, retained users, and retention rate for each cohort month and month offset.
  4. Exclude activity that occurred before a user's signup date, and only include month offsets from 0 to 2.

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
signup_dateDATEDate the user signed up
acquisition_channelVARCHAR(50)Marketing acquisition source
user_activity
ColumnTypeDescription
activity_idPKINTUnique activity event identifier
user_idINTUser tied to the activity event
activity_dateDATEDate of the activity event
activity_typeVARCHAR(50)Type of user activity
Tablesusersuser_activity
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results