Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rank Campaign Segments by Conversion

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

Your question is Rank Campaign Segments by Conversion. 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

NovaCart ran a marketing campaign and wants to know which customer segment converted best. Write a SQL query to identify the highest-converting segment for a specific campaign.

Requirements

  1. Consider only customers who were sent campaign CMP100.
  2. Define a conversion as a purchase made within 7 days after the campaign send date.
  3. Return one row per customer segment with:
    • total targeted customers
    • number of converted customers
    • conversion rate as a percentage rounded to 2 decimals
    • rank by conversion rate, highest first
  4. Exclude segments with fewer than 2 targeted customers.

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(100)Customer full name
segmentVARCHAR(50)Customer marketing segment
signup_dateDATECustomer signup date
campaign_sends
ColumnTypeDescription
send_idPKINTUnique campaign send record
campaign_idVARCHAR(20)Campaign identifier
customer_idINTCustomer who received the campaign
send_dateDATEDate the campaign was sent
orders
ColumnTypeDescription
order_idPKINTUnique order identifier
customer_idINTCustomer who placed the order
order_dateDATEDate the order was placed
order_amountDECIMAL(10,2)Order value
Tablescustomerscampaign_sendsorders
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results