Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started

Second Highest Trade Volume Query

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

Your question is Second Highest Trade Volume 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

Apollo Global Management's investment reporting team needs to compare instrument activity across asset classes. Write a PostgreSQL query that finds the second-highest trade volume for each asset class during February 2025.

Requirements

  1. Filter trades to the half-open date range from 2025-02-01 through, but not including, 2025-03-01.
  2. Calculate total trade volume as the sum of quantity for each instrument.
  3. Rank instruments within each asset class by total volume in descending order.
  4. Return every instrument tied for second place, along with its asset class and total volume.
  5. Exclude instruments whose asset class is null, and order the final results by asset class and instrument ID.

Schema

instruments
ColumnTypeDescription
instrument_idPKINTUnique instrument identifier
instrument_nameVARCHAR(100)Instrument or fund name
asset_classVARCHAR(50)Investment asset class
trades
ColumnTypeDescription
trade_idPKINTUnique trade identifier
instrument_idINTInstrument associated with the trade
trade_timestampTIMESTAMPTrade execution timestamp
quantityNUMERIC(18,2)Number of units traded
Tablesinstrumentstrades
Your solutionPostgreSQL
You need to log in / sign up to run or submit.
Run a query to see results