Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL Conversion Rate by Campaign

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

Your question is SQL Conversion Rate by Campaign. Start with the requirements and the two 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

Google DeepMind marketing analysts need a daily view of campaign performance across surfaces such as the Gemini app and AlphaFold communications. Write a PostgreSQL query that calculates conversion rate by campaign and event date.

Requirements

  1. Count distinct users who generated a click and a conversion for each campaign and date.
  2. Define conversion rate as converting users divided by clicking users, expressed as a percentage rounded to two decimal places.
  3. Include only dates with at least one clicking user, restrict results to January 1 through January 2, 2025, and order by campaign ID and date.

Schema

campaigns
ColumnTypeDescription
campaign_idPKINTPrimary key for the campaign
campaign_nameVARCHAR(100)Readable campaign or marketing surface name
channelVARCHAR(50)Marketing channel used by the campaign
campaign_events
ColumnTypeDescription
event_idPKINTPrimary key for the event
campaign_idINTCampaign associated with the event
user_idINTUser who generated the event
event_dateDATECalendar date on which the event occurred
event_typeVARCHAR(20)Event classification, such as click or conversion
Tablescampaignscampaign_events
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results