Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL for Campaign Performance
00:00
5 left

SQL for Campaign Performance

MediumSQL · PostgreSQL

Problem

Write a SQL query to analyze campaign performance by advertiser, including spend, impressions, clicks, CTR, and conversion rate over the last 30 days.

Use the provided advertisers and campaign_daily_metrics tables. CTR and conversion rate should be percentages, with zero returned when the denominator is zero.

Output

  1. One row per advertiser, including advertisers with no qualifying activity.
  2. Columns: advertiser_id, advertiser_name, total_spend, total_impressions, total_clicks, ctr, conversion_rate.
  3. Sort by total_spend descending, then advertiser_id ascending.

Schema

advertisers
ColumnTypeDescription
advertiser_idPKINTUnique advertiser identifier
advertiser_nameVARCHAR(120)Advertiser display name
campaign_daily_metrics
ColumnTypeDescription
metric_idPKINTUnique daily metric record identifier
advertiser_idINTAdvertiser associated with the metric record
campaign_idINTSamsung Ads campaign identifier
metric_dateDATEDate represented by the daily metrics
spendNUMERIC(12,2)Campaign spend in dollars
impressionsINTAd impressions
clicksINTAd clicks
conversionsINTAttributed conversions
Tablesadvertiserscampaign_daily_metrics
Interviewer

Your question is SQL for Campaign Performance. 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.