Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Retention Rate by Campaign Engagement
00:00
5 left

SQL Retention Rate by Campaign Engagement

MediumSQL · PostgreSQL

Problem

Write a SQL query to find the retention rate of users who engaged with a marketing campaign on day one versus those who did not on Snap.

Treat retention as having activity exactly 7 calendar days after signup. Exclude users whose day-one campaign engagement status is unknown.

Output

  1. One row per engagement segment, with engagement_segment, user_count, retained_users, and retention_rate.
  2. Include engaged and not_engaged, ordered in that order.

Schema

users
ColumnTypeDescription
user_idPKINTUnique Snap user identifier
signup_dateDATEUser signup date
campaign_engaged_day1BOOLEANWhether the user engaged with the campaign on signup day
user_activity
ColumnTypeDescription
activity_idPKINTUnique activity record identifier
user_idINTUser associated with the activity
activity_dateDATEDate of user activity
Tablesusersuser_activity
Interviewer

Your question is SQL Retention Rate by Campaign Engagement. 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.