Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

SQL: Find the 2nd Highest

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

Your question is SQL: Find the 2nd Highest. 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

Blue Yonder's Luminate Planning data team needs to identify distribution centers with the second-highest inventory valuation among active facilities. Write a PostgreSQL query that ranks distinct non-null inventory values and returns every facility tied at rank two.

Requirements

  1. Join inventory valuations to facilities and include only active facilities.
  2. Exclude rows where inventory_value is NULL.
  3. Use a window function such as DENSE_RANK so ties at the second-highest distinct value are retained.
  4. Return the facility name and inventory value, ordered by facility name.

Schema

facilities
ColumnTypeDescription
facility_idPKINTEGERUnique distribution center identifier
facility_nameVARCHAR(100)Distribution center name
regionVARCHAR(50)Operating region
is_activeBOOLEANWhether the facility is currently active
inventory_valuations
ColumnTypeDescription
valuation_idPKINTEGERUnique valuation record identifier
facility_idINTEGERFacility associated with the valuation
sku_codeVARCHAR(30)Stock keeping unit code
inventory_valueNUMERIC(12,2)Total inventory valuation amount
Tablesfacilitiesinventory_valuations
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results