Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL: Avg Booking Value by Segment
00:00
5 left

SQL: Avg Booking Value by Segment

MediumSQL · PostgreSQL

Problem

Write a SQL query using joins and aggregates to calculate the average booking value for users who purchased Price Lock compared to those who did not at Hopper.

Use the provided users, bookings, and price_lock_purchases tables. Booking rows with a NULL booking_value do not contribute to the average.

Output

  1. One row per Price Lock status.
  2. Columns: price_lock_status and average_booking_value.
  3. Include purchased and non-purchased users, round the average to two decimal places, and order purchased users first.

Schema

users
ColumnTypeDescription
user_idPKINTUnique Hopper user identifier
emailVARCHAR(150)User email address
signup_dateDATEDate the user registered
bookings
ColumnTypeDescription
booking_idPKINTUnique booking identifier
user_idINTUser who made the booking
booking_valueNUMERIC(12,2)Booking value in US dollars
booking_dateDATEDate of booking
price_lock_purchases
ColumnTypeDescription
purchase_idPKINTUnique Price Lock purchase identifier
user_idINTUser who purchased Price Lock
purchased_atDATEDate of Price Lock purchase
Tablesusersbookingsprice_lock_purchases
Interviewer

Your question is SQL: Avg Booking Value by Segment. Start with the requirements and the three 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.