Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Monthly Spend by Region and Category

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

Your question is Monthly Spend by Region and Category. Start with the requirements and the one table 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 a clean monthly summary from raw Egencia booking records. Write a SQL query that summarizes total booking spend by month, region, and travel category.

Requirements

  1. Use only the travel_bookings table.
  2. Include only rows where booking_date is in March 2024.
  3. Group results by month, region, and travel_category.
  4. Return these columns:
    • booking_month formatted as YYYY-MM
    • region
    • travel_category
    • total_spend
    • booking_count
  5. Exclude rows where spend_amount is NULL.
  6. Order by booking_month, then region, then travel_category.

Schema

travel_bookings
ColumnTypeDescription
booking_idPKINTUnique booking record ID
traveler_nameVARCHAR(100)Traveler full name
booking_dateDATEDate the booking was created
regionVARCHAR(50)Geographic region for the booking
travel_categoryVARCHAR(50)Travel category such as Air, Hotel, or Rail
spend_amountDECIMAL(10,2)Total booking spend
Tablestravel_bookings
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results