Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Using Data to Solve Problems
00:00
5 left

Using Data to Solve Problems

MediumSQL · PostgreSQL

Problem

How did you use data to solve a problem or answer a question?

Demonstrate your answer with a PostgreSQL query using the supplied campaign data. Summarize active campaigns launched between 2025-01-01 and 2025-03-31, including campaigns with no qualifying activity.

Output

  1. One row per qualifying campaign with campaign_id, campaign_name, total_clicks, total_conversions, conversion_rate, and performance_band.
  2. Include all qualifying campaigns, calculate the rate as conversions divided by clicks times 100, and use 0 when clicks are zero.
  3. Sort by conversion_rate descending, then campaign_id ascending.

Schema

campaigns
ColumnTypeDescription
campaign_idPKINTUnique campaign identifier
campaign_nameVARCHAR(100)Campaign name
statusVARCHAR(20)Current campaign status
launch_dateDATECampaign launch date
campaign_events
ColumnTypeDescription
event_idPKINTUnique event identifier
campaign_idINTReferenced campaign
event_typeVARCHAR(30)Recorded campaign event type
event_dateDATEDate of the event
Tablescampaignscampaign_events
Interviewer

Your question is Using Data to Solve Problems. 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.