Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Lookup-Based Data Reconciliation
00:00
5 left

Lookup-Based Data Reconciliation

HardSQL · PostgreSQL

Problem

How do you utilize XLOOKUP and VLOOKUP for large-scale financial or operational data reconciliation?

Translate the lookup-based reconciliation approach into PostgreSQL. Compare corresponding records from two financial sources and classify matches, discrepancies, and records missing from either source.

Output

  1. One row per transaction key found in either source.
  2. Include the transaction key, both source dates, both amounts, amount difference, and reconciliation status.
  3. Include matches and unmatched records, ordered by transaction key ascending.

Schema

erp_transactions
ColumnTypeDescription
transaction_idPKVARCHAR(20)Transaction identifier from the ERP source
transaction_dateDATEDate recorded by the ERP source
amountNUMERIC(12,2)Transaction amount recorded by the ERP source
currencyVARCHAR(3)ISO currency code
finance_transactions
ColumnTypeDescription
transaction_idPKVARCHAR(20)Transaction identifier from the finance source
posted_dateDATEDate posted by the finance source
amountNUMERIC(12,2)Transaction amount recorded by the finance source
currencyVARCHAR(3)ISO currency code
Tableserp_transactionsfinance_transactions
Interviewer

Your question is Lookup-Based Data Reconciliation. Start with the requirements and the two tables 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.