Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Second-Highest Value With Window Functions

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

Your question is Second-Highest Value With Window Functions. 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

Tiger Analytics is reviewing completed transaction activity for active clients. Write a PostgreSQL query to identify the second-highest transaction value, including every transaction tied at that rank.

Requirements

  1. Join transactions with clients and consider only clients whose status is active.
  2. Consider only transactions with transaction_status = 'completed' and a non-NULL transaction_value.
  3. Use DENSE_RANK() to rank distinct transaction values from highest to lowest.
  4. Return every transaction with rank 2, including ties, along with the client name and transaction value. Sort by transaction value descending and transaction ID ascending.

Schema

clients
ColumnTypeDescription
client_idPKINTPrimary key for the client
client_nameVARCHAR(100)Client name
segmentVARCHAR(30)Client business segment
statusVARCHAR(20)Client account status
transactions
ColumnTypeDescription
transaction_idPKINTPrimary key for the transaction
client_idINTReferences clients.client_id
transaction_valueDECIMAL(12,2)Monetary value of the transaction
transaction_statusVARCHAR(20)Current transaction status
payment_methodVARCHAR(30)Payment method used
Tablesclientstransactions
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results