Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL: Subqueries and Window Functions

EasySQL · PostgreSQL00:00
Practice interviewer
In session
5 left
00:00

Your question is SQL: Subqueries and Window Functions. Start with the requirements and the three tables on the right.

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.

Problem

Fractal's Crux Intelligence team needs a client-level view of campaign performance. Write a PostgreSQL query that identifies the highest-spending active campaigns for each client during Q1 2025.

Requirements

  1. Aggregate Q1 2025 event spend for active campaigns, treating NULL spend as zero.
  2. Rank campaigns separately for each client using ROW_NUMBER(), ordering by total spend descending and campaign ID ascending for deterministic ties.
  3. Return only the top two campaigns per client, including the client name, campaign name, total spend, and rank.
  4. Exclude campaigns with no qualifying Q1 events.

Schema

clients
ColumnTypeDescription
client_idPKINTUnique client identifier
client_nameVARCHAR(100)Client display name
campaigns
ColumnTypeDescription
campaign_idPKINTUnique campaign identifier
client_idINTOwning client identifier
campaign_nameVARCHAR(150)Campaign display name
statusVARCHAR(20)Campaign lifecycle status
campaign_events
ColumnTypeDescription
event_idPKINTUnique event identifier
campaign_idINTCampaign associated with the event
event_dateDATEEvent occurrence date
spendNUMERIC(12,2)Spend attributed to the event
Tablesclientscampaignscampaign_events
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results