Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Top Five Users by Volume
00:00
5 left

Top Five Users by Volume

MediumSQL · PostgreSQL

Problem

Write a SQL query to find the top five users by transaction volume on Binance. Calculate each user's total volume across all transaction records and treat missing volume values as zero.

Output

  1. One row per user, with user_id, username, and total_volume
  2. Include the five users with the highest total volume
  3. Order by total_volume descending, then user_id ascending to break ties

Schema

users
ColumnTypeDescription
user_idPKINTUnique Binance user identifier
usernameVARCHAR(100)Binance username
country_codeVARCHAR(2)Two-letter user country code
transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
user_idINTUser responsible for the transaction
volume_usdtNUMERIC(20,2)Transaction volume denominated in USDT
transaction_dateDATEDate on which the transaction occurred
Tablesuserstransactions
Interviewer

Your question is Top Five Users by Volume. Start with the requirements and the two tables 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.