Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
SQL Duplicate Removal
00:00
5 left

SQL Duplicate Removal

MediumSQL · PostgreSQL

Problem

Write a SQL query to find and remove duplicate records from a database table.

Treat rows as duplicates when policy_number, effective_date, risk_score, and source_system are identical, including matching NULL values. Retain the row with the smallest record_id in each duplicate set and return the records removed.

Output

  1. One row per removed duplicate, with record_id, policy_number, effective_date, risk_score, and source_system.
  2. Sort by record_id in ascending order.

Schema

policy_risk_records
ColumnTypeDescription
record_idPKINTUnique identifier for the risk record
policy_numberVARCHAR(30)Policy identifier supplied by the source system
effective_dateDATEDate on which the policy risk record becomes effective
risk_scoreINTCalculated risk score
source_systemVARCHAR(30)System that supplied the record
Tablespolicy_risk_records
Interviewer

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