Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Drop-Off in Registration
00:00
5 left

SQL for Drop-Off in Registration

MediumSQL · PostgreSQL

Problem

Write a SQL query to find the daily active users who interacted with a marketing campaign but did not complete the registration funnel.

Use the campaign_interactions and registration_funnel tables. Treat a user as having completed the funnel when their funnel status is completed.

Output

  1. One row per activity date with columns activity_date and daily_active_users.
  2. Include only users who interacted with campaign doximity_registration_campaign and have no completed funnel record.
  3. Count each user once per date and order results by activity_date ascending.

Schema

campaign_interactions
ColumnTypeDescription
interaction_idPKINTUnique interaction identifier
user_idINTUser who interacted with the campaign
campaign_idVARCHAR(100)Marketing campaign identifier
interacted_atTIMESTAMPTimestamp of the campaign interaction
interaction_typeVARCHAR(50)Type of campaign interaction
registration_funnel
ColumnTypeDescription
funnel_event_idPKINTUnique funnel event identifier
user_idINTUser associated with the funnel event
funnel_statusVARCHAR(30)Current registration funnel status
completed_atTIMESTAMPTimestamp when registration was completed
Tablescampaign_interactionsregistration_funnel
Interviewer

Your question is SQL for Drop-Off in Registration. 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.