Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Second-Highest Value Query

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

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

Business Context

Ahu Technologies wants to identify the second-highest transaction value recorded by its Platform department. Duplicate transaction values must count as one distinct value.

Task

Write a PostgreSQL query that returns the second-highest distinct transaction_value for the department named Platform.

Requirements

  1. Join transactions to departments using department_id.
  2. Restrict results to the Platform department.
  3. Ignore NULL transaction values and treat duplicate values as one distinct ranking level.
  4. Return one column named second_highest_transaction_value. Return no rows if fewer than two distinct values exist.

Schema

departments
ColumnTypeDescription
department_idPKINTEGERUnique department identifier
department_nameVARCHAR(100)Department name used for filtering
transactions
ColumnTypeDescription
transaction_idPKINTEGERUnique transaction identifier
department_idINTEGERDepartment associated with the transaction
transaction_valueNUMERIC(12,2)Monetary value of the transaction
Tablesdepartmentstransactions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results