Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Duplicate Rows Query
00:00
5 left

SQL Duplicate Rows Query

MediumSQL · PostgreSQL

Problem

Write a query to return all duplicate rows in a table based on three columns.

Use the provided trade_records table. Treat rows with the same values across client_code, instrument_symbol, and venue_code as duplicates. Rows with NULL values in these columns should be evaluated consistently as part of the same combination.

Output

  1. Return record_id, client_code, instrument_symbol, and venue_code.
  2. Include every row belonging to a repeated three-column combination, not just one representative row.
  3. Sort the result by record_id in ascending order.

Schema

trade_records
ColumnTypeDescription
record_idPKINTUnique identifier for the record
client_codeVARCHAR(20)Client reference used in the duplicate key
instrument_symbolVARCHAR(20)Instrument symbol used in the duplicate key
venue_codeVARCHAR(20)Execution venue used in the duplicate key
Tablestrade_records
Interviewer

Your question is SQL Duplicate Rows Query. 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.