Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Average Onboard Spend by Itinerary
00:00
5 left

Average Onboard Spend by Itinerary

MediumSQL · PostgreSQL

Problem

Write a SQL query using a JOIN and an aggregate function to calculate the average onboard spend per guest, grouped by cruise itinerary at Carnival Cruise Line.

Use the provided itinerary and guest spending data. Include only guests with a recorded onboard spend.

Output

  1. One row per itinerary with recorded guest spending.
  2. Return itinerary_name and average_onboard_spend.
  3. Round the average to two decimal places and sort from highest average to lowest, breaking ties alphabetically by itinerary name.

Schema

cruise_itineraries
ColumnTypeDescription
itinerary_idPKINTUnique identifier for the cruise itinerary
itinerary_nameVARCHAR(100)Carnival cruise itinerary name
guest_onboard_spend
ColumnTypeDescription
spend_idPKINTUnique identifier for the guest spending record
guest_idINTIdentifier for the guest
itinerary_idINTItinerary associated with the guest spending record
onboard_spendDECIMAL(10,2)Recorded onboard spend for the guest
Tablescruise_itinerariesguest_onboard_spend
Interviewer

Your question is Average Onboard Spend by Itinerary. 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.