Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Business SQL for Ops Insights
00:00
5 left

Business SQL for Ops Insights

MediumSQL · PostgreSQL

Problem

Can you provide an example of a business-flavored SQL query you would use to analyze operational data at Rokt?

Using the provided Rokt operational tables, write a query that evaluates campaign delivery performance for January 2025.

Output

  1. One row per campaign, including campaigns with no qualifying events.
  2. Columns: campaign_id, campaign_name, total_events, successful_events, and success_rate_pct.
  3. Include only events occurring in January 2025; treat campaigns with no events as zero activity and order by success rate descending, total events descending, then campaign ID ascending.

Schema

campaigns
ColumnTypeDescription
campaign_idPKINTUnique Rokt campaign identifier
campaign_nameVARCHAR(120)Campaign display name
campaign_statusVARCHAR(20)Current campaign status
delivery_events
ColumnTypeDescription
event_idPKINTUnique delivery event identifier
campaign_idINTCampaign associated with the event
occurred_atTIMESTAMPTimestamp when the delivery event occurred
event_statusVARCHAR(20)Operational result of the delivery event
Tablescampaignsdelivery_events
Interviewer

Your question is Business SQL for Ops Insights. 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.