Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Second-Highest Booking Value

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

Your question is Second-Highest Booking Value. 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

Sojern analysts need to validate booking values attributed to the Sojern Travel Marketing Platform. Write a PostgreSQL query that returns the second-highest distinct booking value for completed bookings attributed to that source.

Requirements

  1. Join bookings to booking_sources using source_id.
  2. Include only completed bookings attributed to Sojern Travel Marketing Platform.
  3. Exclude NULL booking values and treat duplicate values as one distinct value.
  4. Return the second-highest value using a ranking technique. Return one row with the booking value.

Schema

bookings
ColumnTypeDescription
booking_idPKINTEGERUnique booking identifier
source_idINTEGERAttribution source identifier
booking_statusVARCHAR(20)Booking lifecycle status
booking_valueNUMERIC(12,2)Monetary value of the booking
booking_sources
ColumnTypeDescription
source_idPKINTEGERUnique attribution source identifier
source_nameVARCHAR(100)Marketing or distribution source name
Tablesbookingsbooking_sources
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results