Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Weekly Signup Cohort Retention

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

Your question is Weekly Signup Cohort 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

StreamWave wants to measure early user retention by signup cohort. Write a SQL query to calculate week-over-week retention for users who signed up in the last 90 days.

Requirements

  1. Treat each user's cohort week as the week of signup_date, using DATE_TRUNC('week', signup_date).
  2. For each cohort week, count how many users were active in week 0, week 1, and week 2 after signup.
  3. Return the number of retained users and the retention rate for each cohort week and week number.
  4. Only include users whose signup_date is within the last 90 days relative to DATE '2024-06-30'.

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
signup_dateDATEDate the user signed up
acquisition_channelVARCHAR(50)Marketing channel that acquired the user
user_activity
ColumnTypeDescription
activity_idPKINTUnique activity event identifier
user_idINTUser who performed the activity
activity_dateDATEDate of the activity
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