Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Rank Clients by Spend

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

Your question is Rank Clients by Spend. Start with the requirements and the two 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

American Express Global Business Travel wants to compare client spending within each operating region. Write a PostgreSQL query that calculates completed booking spend per client and ranks clients against others in the same region.

Requirements

  1. Include clients with no completed bookings, treating their spend as zero.
  2. Exclude clients whose region is unknown and exclude bookings that are not completed.
  3. Use RANK() partitioned by region and ordered by total spend descending. Preserve ties with the same rank.
  4. Return the region, client name, total spend, and regional spend rank, ordered by region, rank, and client ID.

Schema

clients
ColumnTypeDescription
client_idPKINTUnique client identifier
client_nameVARCHAR(120)Client organization name
regionVARCHAR(40)Client operating region
bookings
ColumnTypeDescription
booking_idPKINTUnique booking identifier
client_idINTClient associated with the booking
booking_statusVARCHAR(20)Booking lifecycle status
booking_amountDECIMAL(12,2)Spend attributed to the booking
Tablesclientsbookings
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results