Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Outlier Transactions by Amount
00:00
5 left

Outlier Transactions by Amount

HardSQL · PostgreSQL

Problem

Write a SQL query to identify outlier transactions by amount.

Treat an outlier as a transaction below Q1 minus 1.5 times the interquartile range or above Q3 plus 1.5 times the interquartile range. Calculate thresholds from non-null transaction amounts.

Output

  1. One row per outlier transaction with transaction_id, amount, lower_bound, and upper_bound.
  2. Sort by amount descending, then transaction_id ascending.

Schema

transactions
ColumnTypeDescription
transaction_idPKINTUnique transaction identifier
merchant_nameVARCHAR(100)Merchant associated with the transaction
transaction_typeVARCHAR(30)Transaction classification
amountDECIMAL(12,2)Transaction amount, including possible credits or reversals
Tablestransactions
Interviewer

Your question is Outlier Transactions by Amount. 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.