Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Duplicate Transactions in 5 Minutes
00:00
5 left

Duplicate Transactions in 5 Minutes

MediumSQL · PostgreSQL

Problem

Write a SQL query using window functions to identify duplicate PayPal transaction records within a five-minute window.

Treat a later record as a duplicate when it has the same payer, merchant, amount, currency, and status as the immediately preceding matching record, with a gap of no more than five minutes.

Output

  1. Return one row per later duplicate record with transaction_id, duplicate_of_transaction_id, payer_id, merchant_id, amount, currency, status, transaction_ts, and seconds_since_previous.
  2. Order by payer_id, transaction_ts, and transaction_id.

Schema

paypal_transactions
ColumnTypeDescription
transaction_idPKINTUnique PayPal transaction identifier
payer_idVARCHAR(20)Identifier of the payer account
merchant_idVARCHAR(20)Identifier of the merchant account
amountNUMERIC(12,2)Transaction amount
currencyVARCHAR(3)ISO currency code
statusVARCHAR(20)Transaction processing status
transaction_tsTIMESTAMPTimestamp when the transaction was recorded
Tablespaypal_transactions
Interviewer

Your question is Duplicate Transactions in 5 Minutes. 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.