Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Find Duplicate Claims Records
00:00
5 left

Find Duplicate Claims Records

MediumSQL · PostgreSQL

Problem

Write a SQL query to find duplicate claims records for Plymouth Rock Assurance.

Treat claims as duplicates when policy_number, claimant_id, loss_date, and claim_amount match. Include claims with a NULL loss_date when the other duplicate criteria match.

Output

  1. One row per claim belonging to a duplicate group.
  2. Columns: claim_number, policy_number, claimant_name, loss_date, claim_amount, and duplicate_count.
  3. Exclude claims without a duplicate, order by policy_number, loss_date with NULL values last, then claim_number.

Schema

claims
ColumnTypeDescription
claim_numberPKVARCHAR(20)Unique claim identifier
policy_numberVARCHAR(20)Insurance policy identifier
claimant_idINTClaimant associated with the claim
loss_dateDATEDate on which the covered loss occurred
claim_amountNUMERIC(12,2)Reported claim amount
claim_statusVARCHAR(20)Current claim processing status
claimants
ColumnTypeDescription
claimant_idPKINTUnique claimant identifier
claimant_nameVARCHAR(100)Full name of the claimant
Tablesclaimsclaimants
Interviewer

Your question is Find Duplicate Claims Records. 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.