Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Top 3 Revenue Bookings

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

Your question is Top 3 Revenue Bookings. 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

Marriott International wants a monthly view of its highest-value bookings across Marriott properties. Write a PostgreSQL query that ranks eligible bookings by revenue within each calendar month.

Requirements

  1. Join marriott_bookings to marriott_properties to include the property name.
  2. Exclude cancelled bookings, bookings without revenue, and bookings whose property is not present in the property table.
  3. Return the top three bookings per month, ordered by revenue descending within each month. Use booking_id as a deterministic tie-breaker.

Schema

marriott_properties
ColumnTypeDescription
property_idPKINTEGERUnique Marriott property identifier
property_nameVARCHAR(120)Displayed Marriott property name
cityVARCHAR(80)City where the property is located
brandVARCHAR(60)Marriott brand associated with the property
marriott_bookings
ColumnTypeDescription
booking_idPKINTEGERUnique booking identifier
property_idINTEGERReferenced Marriott property identifier
check_in_dateDATEGuest arrival date
booking_statusVARCHAR(20)Current status of the booking
total_revenueNUMERIC(12,2)Total booking revenue in U.S. dollars
Tablesmarriott_propertiesmarriott_bookings
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results