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

Find Duplicate Registrations

MediumSQL · PostgreSQL

Problem

Write a SQL query to find the duplicate records in a test-taker registration table. Treat rows with the same test_taker_id, test_code, and registration_date as duplicates. Return one row per duplicated combination, including the source registration IDs.

Output

  1. Columns: test_taker_id, test_code, registration_date, duplicate_count, and registration_ids
  2. Include only combinations appearing more than once
  3. Sort by test_taker_id, test_code, and registration_date ascending

Schema

test_taker_registrations
ColumnTypeDescription
registration_idPKINTUnique registration record identifier
test_taker_idINTIdentifier for the test taker
test_codeVARCHAR(20)ETS assessment code
registration_dateDATEDate associated with the registration
Tablestest_taker_registrations
Interviewer

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