Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Weekly Cohort Retention

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

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

PayPal’s Product Growth team wants to measure how consistently newly registered users return after signup. Write a PostgreSQL query that calculates weekly retention for PayPal users who signed up during January 2025.

Requirements

  1. Define each user’s cohort as the calendar week beginning on Monday that contains signup_date.
  2. Report retention for cohort weeks 0 through 4, where week 0 is the signup week.
  3. Count distinct active users in each cohort week. Any non-null activity record qualifies as activity, but activity before signup must be excluded.
  4. Return cohort size, retained users, and retention percentage, ordered by cohort week and retention week.

Schema

users
ColumnTypeDescription
user_idPKINTUnique PayPal user identifier
emailVARCHAR(255)User email address
signup_dateDATEDate the user registered
user_activity
ColumnTypeDescription
activity_idPKINTUnique activity record identifier
user_idINTUser associated with the activity
activity_dateDATEDate of user activity
activity_typeVARCHAR(50)Type of PayPal activity
Tablesusersuser_activity
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results