Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Paid Search MoM Retention SQL
00:00
5 left

Paid Search MoM Retention SQL

MediumSQL · PostgreSQL

Problem

Write a SQL query to calculate the month-over-month retention rate of users acquired through paid search campaigns at Retool.

Use the provided campaign, user, and activity data. Include monthly transitions where users were active in the preceding month, including transitions with zero retained users.

Output

  1. One row per consecutive month transition
  2. Columns: previous_month, retention_month, previous_active_users, retained_users, and retention_rate
  3. Include only users acquired through paid search and activity on or after acquisition
  4. Order by previous_month ascending

Schema

users
ColumnTypeDescription
user_idPKINTUnique Retool user identifier
acquired_atDATEDate the user was acquired
campaign_idINTCampaign attributed to the user's acquisition
campaigns
ColumnTypeDescription
campaign_idPKINTUnique campaign identifier
campaign_nameVARCHAR(100)Campaign name
channelVARCHAR(50)Acquisition channel
user_activity
ColumnTypeDescription
activity_idPKINTUnique activity event identifier
user_idINTUser associated with the activity
event_atTIMESTAMPTimestamp of the activity event
event_typeVARCHAR(50)Type of product activity
Tablesuserscampaignsuser_activity
Interviewer

Your question is Paid Search MoM Retention SQL. Start with the requirements and the three 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.