Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Join Tables and Remove Duplicates
00:00
5 left

Join Tables and Remove Duplicates

MediumSQL · PostgreSQL

Problem

Write a SQL query to join multiple tables and remove duplicate rows.

Use the provided customer, card, and transaction tables. For repeated transaction IDs, retain the most recently loaded record.

Output

  1. One row per retained transaction with columns transaction_id, customer_id, customer_name, card_id, card_type, amount, and transaction_date
  2. Exclude transactions whose card or customer cannot be matched
  3. Order by transaction_date descending, then transaction_id ascending

Schema

customers
ColumnTypeDescription
customer_idPKINTUnique customer identifier
customer_nameVARCHAR(100)Customer display name
customer_segmentVARCHAR(30)Customer segment
cards
ColumnTypeDescription
card_idPKINTUnique card identifier
customer_idINTCustomer associated with the card
card_typeVARCHAR(40)Card product type
card_statusVARCHAR(20)Current card status
card_transactions
ColumnTypeDescription
transaction_record_idPKINTUnique ingestion record identifier
transaction_idINTBusiness transaction identifier
card_idINTCard used for the transaction
amountDECIMAL(10,2)Transaction amount
transaction_dateDATEDate of the transaction
loaded_atTIMESTAMPTimestamp when the record was loaded
Tablescustomerscardscard_transactions
Interviewer

Your question is Join Tables and Remove Duplicates. Start with the requirements and the three 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.