i am using sql server 2005. i have a table contains duplicated rows. how can i eliminated those duplicate rows in that table? for e.g., the table may contain 3 similar rows in which i want to delete 2 rows and keep the original
|
|
If you just want to eliminate duplicate records from your result set, you can use the DISTINCT command:
If you want to delete those duplicate records, you can use COUNT to detect which records have more than one instance, and then deleting them with a subquery |
|||||||||
|
|
First you can copy duplicate record into another table like as following way
then remove that record from original table
and finally copy record from temporary table to original source table.
through above mentioned steps you can eliminate duplicate record from table. |
|||
|
|
|
For understanding purpose, lets take a simple table Employee with below schema
Lets populate with duplicate values. Please note primary key is not duplicated in this case
we can make use of CTE in finding the duplicate rows. Gather duplicate rows by using Group by/Count statement. Once Duplicate rows are Identified, we select those rows from the main table using join condition. Now rank those Rows and delete all the rows apart from the rows with rank 1. I find this a lot more elegant.
|
|||
|
|