Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Retention Cohorts With Complex Joins

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

Your question is Retention Cohorts With Complex Joins. 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

Twitch wants to measure how consistently viewers return after their first qualifying stream session. Write a PostgreSQL query that builds monthly viewer retention cohorts for activity during 2025.

Requirements

  1. Define each viewer's cohort as the calendar month of their first session on an active Twitch channel during 2025.
  2. Calculate retention for cohort months 0 through 11, where month 0 is the cohort month.
  3. Return one row per cohort with the cohort size and the distinct number of retained viewers in each month.
  4. Include only sessions associated with active channels, deduplicate multiple sessions by viewer and calendar month, and sort cohorts chronologically.

Schema

users
ColumnTypeDescription
user_idPKINTUnique Twitch viewer identifier
display_nameVARCHAR(80)Twitch display name
created_atDATEDate the viewer account was created
stream_sessions
ColumnTypeDescription
session_idPKINTUnique watched-session identifier
user_idINTViewer who watched the session
channel_idINTTwitch channel associated with the session
started_atTIMESTAMPSession start timestamp
channels
ColumnTypeDescription
channel_idPKINTUnique Twitch channel identifier
channel_nameVARCHAR(100)Twitch channel name
is_activeBOOLEANWhether the channel is eligible for retention analysis
Tablesusersstream_sessionschannels
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results