Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Deduplicate Large Transaction Table
00:00
5 left

Deduplicate Large Transaction Table

MediumSQL · PostgreSQL

Problem

Write a SQL query to identify and remove duplicate records from a large transactional table without using temporary tables.

Treat records with the same account_id, transaction_ts, amount, merchant_code, and status as duplicates. Preserve the record with the smallest transaction_id and return the records removed.

Output

  1. One row per deleted duplicate.
  2. Columns: transaction_id, account_id, transaction_ts, amount, merchant_code, and status.
  3. Order by transaction_id ascending.

Schema

transactions
ColumnTypeDescription
transaction_idPKBIGINTUnique transaction identifier
account_idBIGINTAccount associated with the transaction
transaction_tsTIMESTAMPTZTimestamp when the transaction occurred
amountNUMERIC(12,2)Transaction amount
merchant_codeVARCHAR(20)Merchant identifier
statusVARCHAR(20)Transaction processing status
Tablestransactions
Interviewer

Your question is Deduplicate Large Transaction Table. 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.