Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Adobe Campaign and Web Tech
00:00
5 left

Adobe Campaign and Web Tech

MediumSQL · PostgreSQL

Problem

Tell me about Adobe Campaign Classic and your experience with HTML, CSS, JavaScript, and SQL.

For the SQL portion, write a PostgreSQL query using the Adobe Campaign Classic delivery and broad log data to report email performance for deliveries launched during the first half of 2025.

Output

  1. One row per qualifying delivery, ordered by launch date and delivery ID.
  2. Return delivery_month, delivery_id, delivery_name, recipient_count, delivered_count, failed_count, opened_count, and delivery_rate_percent.
  3. Include deliveries with no broad log records, and calculate the delivery rate as delivered recipients divided by all logged recipients.

Schema

adobe_campaign_deliveries
ColumnTypeDescription
delivery_idPKINTUnique Adobe Campaign Classic delivery identifier
delivery_nameVARCHAR(150)Delivery label
channelVARCHAR(30)Campaign communication channel
start_atTIMESTAMPDelivery launch timestamp
adobe_campaign_broadlogs
ColumnTypeDescription
broadlog_idPKINTUnique broad log identifier
delivery_idINTReferenced Adobe Campaign Classic delivery
recipient_idINTRecipient identifier
statusVARCHAR(30)Delivery outcome status
opened_atTIMESTAMPTimestamp when the message was opened
Tablesadobe_campaign_deliveriesadobe_campaign_broadlogs
Interviewer

Your question is Adobe Campaign and Web Tech. 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.