What is the best way to remove duplicate rows from a fairly large table (i.e. 300,000+ rows)?

The rows of course will not be perfect duplicates because of the existence of the RowID identity field.

MyTable
-----------
RowID int not null identity(1,1) primary key,
Col1 varchar(20) not null,
Col2 varchar(2048) not null,
Col3 tinyint not null
link|improve this question

42% accept rate
feedback

13 Answers

up vote 154 down vote accepted

Assuming no nulls, you GROUP BY the unique columns, and SELECT the MIN (or MAX) RowId as the row to keep. Then, just delete everything that didn't have a row id:

DELETE MyTable 
FROM MyTable
LEFT OUTER JOIN (
   SELECT MIN(RowId) as RowId, Col1, Col2, Col3 
   FROM MyTable 
   GROUP BY Col1, Col2, Col3
) as KeepRows ON
   MyTable.RowId = KeepRows.RowId
WHERE
   KeepRows.RowId IS NULL
link|improve this answer
1  
A fantastically clear solution. – Chris Jul 14 '09 at 22:35
9  
Would this work as well? DELETE FROM MyTable WHERE RowId NOT IN (SELECT MIN(RowId) FROM MyTable GROUP BY Col1, Col2, Col3); – Georg Schölly Sep 23 '10 at 11:13
6  
CTE's can be used to do this more elegantly and possibly more efficiently in SQL Server 2005+ - As in my answer! – Martin Smith Sep 29 '10 at 15:08
1  
@Andriy - In SQL Server LEFT JOIN is less efficient than NOT EXISTS sqlinthewild.co.za/index.php/2010/03/23/… The same site also compares NOT IN vs NOT EXISTS. sqlinthewild.co.za/index.php/2010/02/18/not-exists-vs-not-in Out of the 3 I think NOT EXISTS performs best. All three will generate a plan with a self join though that can be avoided. – Martin Smith Jan 14 '11 at 9:17
1  
Coming very late I know, but sqlinthewild.co.za/index.php/2010/02/18/not-exists-vs-not-in. If the columns were nullable, NOT IN behaves differently and performs terribly. It's why I recommend NOT EXISTS. – GilaMonster Jul 6 '11 at 7:54
show 10 more comments
feedback

Answer

;WITH cte
     AS (SELECT ROW_NUMBER() OVER (PARTITION BY Col1, Col2, Col3 
                                       ORDER BY ( SELECT 0)) RN
         FROM   #MyTable)
DELETE FROM cte
WHERE  RN > 1

Execution Plans

The execution plan for this is simpler and more efficient than that in the accepted answer as it does not require the self join.

Execution Plans

Test Script

CREATE TABLE #MyTable
(
RowID int not null identity(1,1) primary key,
Col1 varchar(20) not null,
Col2 varchar(2048) not null,
Col3 tinyint not null
) 

INSERT INTO #MyTable (Col1, Col2, Col3)
SELECT 'aaa', 'aaa', 10 UNION ALL
SELECT 'aaa', 'aaa', 10 UNION ALL
SELECT 'bbb', 'bbb', 20 UNION ALL
SELECT 'aaa', 'aaa', 10 

;WITH cte
     AS (SELECT ROW_NUMBER() OVER (PARTITION BY Col1, Col2, Col3 
                                       ORDER BY ( SELECT 0)) RN
        /*NB: ORDER BY (SELECT 0) is used as we don't care about
          ordering withing each partition. SQL Server doesn't allow
          ordering by literal constants directly. e.g. `ORDER BY '0'`
          Could also use ORDER BY $/0 for less typing as the division by
          zero prevents the constant folding */                                       
         FROM   #MyTable)
DELETE FROM cte
WHERE  RN > 1

SELECT *
FROM   #MyTable

DROP TABLE #MyTable  
link|improve this answer
2  
If I may add: The accepted answer doesn't work with tables that uses uniqueidentifier. This one is much simpler and works perfectly on any table. Thanks Martin. – BrunoLM Nov 16 '10 at 15:50
1  
This solution worked extremely well, thanks. – Stefan Mohr Nov 25 '10 at 17:26
i love it. cleaned up a huge mess for me in no time at all – spaghetticowboy Feb 23 '11 at 20:06
2  
This is such an awesome answer! It worked event when I had removed the old PK before I realised there where duplicates. +100 – Mikael Eliasson Jul 19 '11 at 19:55
2  
I replaced Col1, Col2, Col3 with a BINARY_CHECKSUM(*) call in the PARTITION BY CLAUSE and had good results, saved myself specifying 30+ columns on some large tables. – Matt Stephenson Jan 5 at 20:22
show 5 more comments
feedback

There's a good article on removing duplicates on the Microsoft Support site. It's pretty conservative - they have you do everything in separate steps - but it should work well against large tables.

I've used self-joins to do this in the past, although it could probably be prettied up with a HAVING clause:

delete from dupes
from MyTable dupes, MyTable fullTable
where dupes.dupField = fullTable.dupField 
  and dupes.secondDupField  = fullTable.secondDupField 
  and dupes.uniqueField > fullTable.uniqueField
link|improve this answer
feedback
delete t1
from table t1, table t2
where t1.columnA = t2.columnB
and t1.rowid>t2.rowid
link|improve this answer
feedback

The following query is useful to delete duplicate rows. The table in this example has ID as an identity column and the columns which have duplicate data are Column1, Column2 and Column3.

DELETE
FROM TableName
WHERE ID NOT IN    
(
SELECT MAX(ID)
FROM TableName
GROUP BY Column1, Column2, Column3)

The following script shows usage of GROUP BY, HAVING, ORDER BY in one query, and returns the results with duplicate column and its count.

SELECT YourColumnName, COUNT(*) TotalCount
FROM YourTableName
GROUP BY YourColumnName
HAVING COUNT(*) > 1
ORDER BY COUNT(*) DESC
link|improve this answer
feedback

By useing below query we can able to delete duplicate records based on the single column or multiple column. below query is deleting based on two columns. table name is: testing and column names empno,empname

DELETE FROM testing WHERE empno not IN (SELECT empno FROM (SELECT empno, ROW_NUMBER() OVER (PARTITION BY empno ORDER BY empno) 
AS [ItemNumber] FROM testing) a WHERE ItemNumber > 1)
or empname not in
(select empname from (select empname,row_number() over(PARTITION BY empno ORDER BY empno) 
AS [ItemNumber] FROM testing) a WHERE ItemNumber > 1)
link|improve this answer
feedback

Here is another good article on removing duplicates.

It discusses why its hard: "SQL is based on relational algebra, and duplicates cannot occur in relational algebra, because duplicates are not allowed in a set."

The temp table solution, and two mysql examples.

In the future are you going to prevent it at a database level, or from an application perspective. I would suggest the database level because your database should be responsible for maintaining referential integrity, developers just will cause problems ;)

link|improve this answer
SQL is based on multi-sets. But even if it was based on sets, this two tuples (1, a) & (2, a) are different. – Andrew Oct 17 '11 at 23:50
feedback

Oh sure. Use a temp table. If you want a single, not-very-performant statement that "works" you can go with:

DELETE FROM MyTable WHERE NOT RowID IN
    (SELECT 
        (SELECT TOP 1 RowID FROM MyTable mt2 WHERE mt2.Col1 = mt.Col1 AND mt2.Col2 = mt.Col2 AND mt2.Col3 = mt.Col3) 
    FROM MyTable mt)

Basically, for each row in the table, the sub-select finds the top RowID of all rows that are exactly like the row under consideration. So you end up with a list of RowIDs that represent the "original" non-duplicated rows.

link|improve this answer
feedback

From the application level (unfortunately). I agree that the proper way to prevent duplication is at the database level through the use of a unique index, but in SQL Server 2005, an index is allowed to be only 900 bytes, and my varchar(2048) field blows that away.

I dunno how well it would perform, but I think you could write a trigger to enforce this, even if you couldn't do it directly with an index. Something like:

-- given a table stories(story_id int not null primary key, story varchar(max) not null)
create trigger prevent_plagiarism on stories
after insert, update
as
declare @cnt as int
select @cnt = count(*) from stories inner join inserted on (stories.story = inserted.story and stories.story_id != inserted.story_id)
if @cnt > 0
begin
    raiserror('plagiarism detected', 16, 1)
rollback transaction
end

Also, varchar(2048) sounds fishy to me (some things in life are 2048 bytes, but it's pretty uncommon); should it really not be varchar(max)?

link|improve this answer
feedback

1) Create new blank table with the same structure

2) Execute query like this

INSERT INTO tc_category1
SELECT *
FROM tc_category
GROUP BY category_id, application_id
HAVING count(*) > 1

3) Then execute this query

INSERT INTO tc_category1
SELECT *
FROM tc_category
GROUP BY category_id, application_id
HAVING count(*) = 1
link|improve this answer
feedback
Select count(col1) 
from table 
group by count(column1) 
having count(*) > 1

you can also include in update, delete

link|improve this answer
feedback

I had a table where I needed to preserve non-duplicate rows. I'm not sure on the speed or efficiency.

DELETE FROM myTable WHERE RowID IN (
  SELECT MIN(RowID) AS IDNo FROM myTable
  GROUP BY Col1, Col2, Col3
  HAVING COUNT(*) = 2 )
link|improve this answer
This assumes that there is at most 1 duplicate. – Martin Smith Oct 2 '10 at 20:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.