Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

30-Day Campaign User Retention

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

Your question is 30-Day Campaign User Retention. 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

You are given campaign interaction data and subsequent user activity data. Write a PostgreSQL query to calculate the 30-day retention rate for users who interacted with a specific Google Ads campaign. Treat a user as retained if they have at least one activity event in the 30 days after their first interaction with that campaign. Return the campaign name, the number of users in the campaign cohort, the number of retained users, and the retention rate as a percentage rounded to two decimals.

Schema

campaigns
ColumnTypeDescription
campaign_idPKINTPrimary key for the campaign
campaign_nameVARCHAR(100)Google Ads campaign name
campaign_interactions
ColumnTypeDescription
interaction_idPKINTPrimary key for the interaction event
user_idINTUser who interacted with the campaign
campaign_idINTReferenced campaign identifier
interaction_dateDATEDate of campaign interaction
user_activity
ColumnTypeDescription
activity_idPKINTPrimary key for the activity event
user_idINTUser who generated the activity
activity_dateDATEDate of user activity
activity_typeVARCHAR(50)Type of activity event
Tablescampaignscampaign_interactionsuser_activity
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results