how can I delete duplicate rows in SQL Server 2008 ?
thanks in advance
|
|
Add a primary key. Seriously, every table should have one. It can be an identity and you can ignore it, but make sure that every single table has a primary key defined. Imagine that you have a table like:
Then you can say something like:
Another trick is to select out the distinct records with the minimum id, and keep those:
(Sorry, I haven't tested these, but one of these ideas could lead you to your solution.) Note that if you don't have a primary key, the only other way to do this is to leverage a pseudo-column like |
|||
|
|
|
The simplest way is with a CTE (common table expression). I use this method when I've got raw data to import; the first thing I do to sanitize it is to assure there are no duplicates---that I've got some sort of unique handle to each row. Summary:
The "dupe-column-list" part is where you list all of the columns involved where you wish values were unique. The ORDER BY is where you decide, within a set of duplicates, which row "wins" and which gets deleted. (The "WHERE 1=1" is just a personal habit.) The reason it works is because Sql Server keeps an internal, unique reference to each source row that's selected in the CTE. So when the DELETE is executed, it knows the exact row to be deleted, regardless what you put in your CTE's select-list. (If you're nervous, you could change the "DELETE" to "SELECT *", but since you've got duplicate rows, it's not going to help; if you could uniquely identify each row, you wouldn't be reading this.) Example:
Of the 8 rows, you have 5 involved with duplicate problems; 3 rows need to get removed. You can see the problems with this:
Now run the following query to remove the duplicates, leaving 1 row from each set of duplicates.
You are now left with 5 rows, none of which are duplicated. |
|||||
|
|
|
Even though u dont have a Primary key, u can delete the duplicate data by the below code
|
|||
|
|
|
Assuming you have a primary key called id and other columns are col2 ...coln, and that by "duplicate" rows you mean all rows where all column values except the PK are duplicated
i.e. group on all non-PK columns |
|||
|