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

Duplicate Transactions Query

MediumSQL · PostgreSQL

Problem

Mastercard Decision Intelligence needs to flag potentially duplicated card authorizations before they are reviewed for fraud or processing errors. Write a PostgreSQL query that compares transactions against other transactions from the same card token, merchant, currency, and amount.

Requirements

  1. Treat a transaction as a duplicate candidate when the matching transaction occurs after it and no more than two minutes later.
  2. Include only transactions with an approved status, and exclude the original transaction from matching with itself.
  3. Use ROW_NUMBER() to rank duplicate candidates chronologically for each original transaction.
  4. Return the original and duplicate transaction IDs, matching attributes, timestamps, and the candidate rank, ordered by original transaction and rank.

Schema

card_transactions
ColumnTypeDescription
transaction_idPKBIGINTUnique authorization identifier
card_tokenVARCHAR(64)Tokenized card identifier
merchant_idVARCHAR(32)Merchant identifier
amountNUMERIC(12,2)Authorization amount
currencyCHAR(3)ISO currency code
transaction_tsTIMESTAMPTZAuthorization timestamp
statusVARCHAR(20)Authorization status
Tablescard_transactions
Interviewer

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