Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Monthly Retention via Paid Channels
00:00
5 left

Monthly Retention via Paid Channels

MediumSQL · PostgreSQL

Problem

Write a SQL query to calculate the monthly retention rate of users acquired through paid marketing channels at Wise. Energy. Treat paid_search, paid_social, and paid_display as paid channels. Retention is measured when a paid user records activity in a later calendar month.

Output

  1. One row per acquisition month and later activity month, using cohort_month and retention_month.
  2. Return cohort_users, retained_users, and retention_rate_pct, calculated against the original paid acquisition cohort.
  3. Include months with zero retained users, exclude the acquisition month, and order by cohort_month, then retention_month.

Schema

users
ColumnTypeDescription
user_idPKINTUnique user identifier
acquired_atDATEDate when the user was acquired
acquisition_channelVARCHAR(50)Marketing channel responsible for acquisition
user_activity
ColumnTypeDescription
activity_idPKINTUnique activity identifier
user_idINTUser who performed the activity
activity_atDATEDate when the activity occurred
activity_typeVARCHAR(50)Type of user activity
Tablesusersuser_activity
Interviewer

Your question is Monthly Retention via Paid Channels. Start with the requirements and the two tables in the Question tab.

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.
CodePostgreSQL
You need to log in / sign up to run or submit.Ln 1
Run your query to see results here.