Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL For Marketing Touchpoints
00:00
5 left

SQL For Marketing Touchpoints

MediumSQL · PostgreSQL

Problem

How would you write a SQL query to identify customers who have interacted with three specific marketing touchpoints in the last 30 days?

Assume the required touchpoints are Analog Devices Website, EngineerZone, and ADI Webinar. Return only customers who interacted with all three during the period.

Output

  1. One row per qualifying customer
  2. Columns: customer_id, customer_name, touchpoints_interacted, and last_interaction_at
  3. Include exactly three distinct touchpoints and sort by customer_id ascending

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(150)Customer or account name
emailVARCHAR(255)Customer email address
marketing_interactions
ColumnTypeDescription
interaction_idPKINTUnique interaction identifier
customer_idINTCustomer associated with the interaction
touchpoint_nameVARCHAR(100)Marketing touchpoint involved in the interaction
channelVARCHAR(50)Channel classification for the interaction
interaction_atTIMESTAMPTimestamp when the interaction occurred
Tablescustomersmarketing_interactions
Interviewer

Your question is SQL For Marketing Touchpoints. 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.