Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Remove Duplicates With SQL DISTINCT
00:00
5 left

Remove Duplicates With SQL DISTINCT

EasySQL · PostgreSQL

Problem

Write a SQL query using DISTINCT to remove duplicates from a dataset.

Return unique combinations of the dataset attributes, excluding the surrogate row identifier. Preserve NULL values as valid attribute values.

Output

  1. One row per unique combination of source_system, customer_reference, account_type, and status
  2. Columns named source_system, customer_reference, account_type, and status
  3. Sort by source_system, customer_reference, account_type, and status ascending, with NULL statuses last

Schema

dataset_records
ColumnTypeDescription
record_idPKINTUnique identifier for the stored row
source_systemVARCHAR(30)System that supplied the record
customer_referenceVARCHAR(20)Customer reference in the source data
account_typeVARCHAR(30)Account category recorded in the dataset
statusVARCHAR(20)Current record status, when provided
Tablesdataset_records
Interviewer

Your question is Remove Duplicates With SQL DISTINCT. 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.