Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Second-Highest Per Customer
00:00
5 left

Second-Highest Per Customer

MediumSQL · PostgreSQL

Problem

Write a SQL query using window functions to find the second-highest transaction amount for each customer within a specific month.

Use May 2024 as the target month. Treat the second-highest amount as the second distinct amount, exclude NULL amounts, and exclude customers without at least two distinct transactions in the month.

Output

  1. One row per qualifying customer
  2. Columns: customer_id, second_highest_amount
  3. Order by customer_id ascending

Schema

transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
customer_idINTIdentifier of the customer making the transaction
transaction_dateDATEDate on which the transaction occurred
amountDECIMAL(12,2)Transaction amount
Tablestransactions
Interviewer

Your question is Second-Highest Per Customer. Start with the requirements and the one table 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.