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

Find Duplicate Records Query

EasySQL · PostgreSQL

Problem

Unity QA engineers review automated test results from Unity Test Framework runs. Duplicate records can inflate failure counts and make build-quality reports unreliable.

Write a PostgreSQL query to identify duplicate test-run records in the unity_test_runs table. The unique record identifier, run_id, must not be considered when determining whether two records are duplicates.

Requirements

  1. Group records by platform, test_name, build_version, executed_on, and result.
  2. Return only groups that occur more than once, including the duplicate count.
  3. Sort the output by the grouping columns in ascending order.

PostgreSQL grouping should treat rows with matching NULL values in the same grouping column as duplicates.

Schema

unity_test_runs
ColumnTypeDescription
run_idPKINTUnique test-run record identifier
platformVARCHAR(30)Unity target platform
test_nameVARCHAR(100)Unity Test Framework test name
build_versionVARCHAR(30)Unity build version under test
executed_onDATEDate the test ran
resultVARCHAR(20)Test outcome
Tablesunity_test_runs
Interviewer

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