| Answer: |
The situation: you have a database table with a number of duplicate rows (that is, every column each duplicate row matches). You'd like to delete all of these rows save one, essentially removing all duplicates.
There are two scenarios we must consider in this feat. The first one is that there is no unique key for each row in the database; the second scenario we'll examine is that such a key does exist. (The second scenario is "better," since we can perform the DELETE with a single SQL statement, whereas the first scenario requires creating a unique key and then using a cursor... bleh.)
NO UNIQUE KEY In this case, we have a difficult problem if we are trying to solve this with a single SQL Statement. In this situation, I recommend one of the following approaches:
1.) Add a unique key to the table This is easy. Add a column called ID as an integer, and make it an identifier column by checking the identity box in the table design window. Set the Identity Seed to 1 and the Identity Increment to 1. The column will automatically be populated with unique values for each row in the table. Proceed to UNIQUE KEY section below.
2.) Write a stored procedure. The strategy here would be to write a query that returns a row for each set of duplicates, using a query such as the following:
SELECT Field1, Field2, Count(ID) FROM Foo1 GROUP BY Foo1.Field1, Foo1.Field2 HAVING Count(Foo1.ID) > 1
|
Use a cursor to loop through the returned rows, then for each set of duplicates, read all rows for that set:
SELECT Field1, Field2, ID FROM Foo1 WHERE Field1 = @FIELD1 and Field2 = @FIELD2
|
Then delete each row except the first one returned, for each set of duplicates.
UNIQUE KEY If dealing with a table that does have a unique key, the problem of removing duplicates is much easier, and able to be accomplished in one SQL statement such as the following:
DELETE FROM Foo1 WHERE Foo1.ID IN
-- List 1 - all rows that have duplicates (SELECT F.ID FROM Foo1 AS F WHERE Exists (SELECT Field1, Field2, Count(ID) FROM Foo1 WHERE Foo1.Field1 = F.Field1 AND Foo1.Field2 = F.Field2 GROUP BY Foo1.Field1, Foo1.Field2 HAVING Count(Foo1.ID) > 1)) AND Foo1.ID NOT IN
-- List 2 - one row from each set of duplicate (SELECT Min(ID) FROM Foo1 AS F WHERE Exists (SELECT Field1, Field2, Count(ID) FROM Foo1 WHERE Foo1.Field1 = F.Field1 AND Foo1.Field2 = F.Field2 GROUP BY Foo1.Field1, Foo1.Field2 HAVING Count(Foo1.ID) > 1) GROUP BY Field1, Field2);
|
Since this may appear complicated, let me explain. My strategy here is to return two lists: The first, List 1, is a list of all rows that have duplicates, and the second, List 2, is a list of one row from each set of duplicates. This query simply deletes all rows that are in List 1 but not in List 2
This FAQ was taken from a previous SQL Guru question...
Alert 4Guys reader Paul Davallou wrote in to share another way...
|
Another way to remove all duplicate records in a database table save one is to use the following approach:
1.) Capture one instance of the unique rows using a SELECT DISTINCT ..., dumping the results into a temp table.
2.) Delete all of the rows from the original table
3.) Insert the rows from the temp table back into the original table.
And there you have it! |