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.
test_taker_id, test_code, registration_date, duplicate_count, and registration_idstest_taker_id, test_code, and registration_date ascending| Column | Type | Description |
|---|---|---|
| registration_idPK | INT | Unique registration record identifier |
| test_taker_id | INT | Identifier for the test taker |
| test_code | VARCHAR(20) | ETS assessment code |
| registration_date | DATE | Date associated with the registration |