Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Top 5% Most Expensive Trades
00:00
5 left

SQL Top 5% Most Expensive Trades

MediumSQL · PostgreSQL

Problem

Given a database of trading execution metrics, write a SQL query to identify the top 5% most expensive trades by venue.

Use the execution_metrics table and consider completed trades with non-null execution costs. Use trade_id as the deterministic tie-breaker.

Output

  1. Return venue, trade_id, execution_cost, and venue_rank.
  2. Include one row per selected trade, ordered by venue, then venue_rank, then trade_id.

Schema

execution_metrics
ColumnTypeDescription
trade_idPKINTUnique identifier for the trade
venueVARCHAR(40)Trading venue where the execution occurred
execution_costDECIMAL(14,2)Total measured execution cost for the trade
execution_statusVARCHAR(20)Execution lifecycle status
executed_atTIMESTAMPTimestamp when the trade was executed
Tablesexecution_metrics
Interviewer

Your question is SQL Top 5% Most Expensive Trades. 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.