Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
share|improve this question

19 Answers

up vote 286 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

Use

CONVERT(uniqueidentifier, MIN(CONVERT(char(36), MyGuidColumn))) 

instead of MIN(RowId) if you have a GUID instead of an integer

share|improve this answer
1  
A fantastically clear solution. – Chris Jul 14 '09 at 22:35
32  
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
8  
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
3  
@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 13 more comments

Another possible way of doing this is

;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

I am using ORDER BY (SELECT 0) above as it is arbitrary which row to preserve in the event of a tie.

To preserve the latest one in RowID order for example you could use ORDER BY RowID DESC

Execution Plans

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

Execution Plans

This is not always the case however. One place where the GROUP BY solution might be preferred is situations where a hash aggregate would be chosen in preference to a stream aggregate.

The ROW_NUMBER solution will always give pretty much the same plan whereas the GROUP BY strategy is more flexible.

Execution Plans

Factors which might favour the hash aggregate approach would be

  • No useful index on the partitioning columns
  • relatively fewer groups with relatively more duplicates in each group

In extreme versions of this second case (if there are very few groups with many duplicates in each) one could also consider simply inserting the rows to keep into a new table then TRUNCATE-ing the original and copying them back to minimise logging compared to deleting a very high proportion of the rows.

share|improve this answer
4  
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
5  
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
3  
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 '12 at 20:22
5  
I suggest asking and then answering this question (with this answer) on DBA.SE. Then we can add it to our list of canonical answers. – Nick Chammas Jun 5 '12 at 23:49
show 11 more comments

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
share|improve this answer

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
                  /*Even if ID is not null-able SQL Server treats MAX(ID) as potentially
                    nullable. Because of semantics of NOT IN (NULL) including the clause
                    below can simplify the plan*/
                  HAVING MAX(ID) IS NOT NULL) 

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 
share|improve this answer
1  
MySQL error with the first script 'You can't specify target table 'TableName' for update in FROM clause' – D.Rosado Jun 13 '12 at 10:54
Apart from the error D.Rosado already reported, your first query is also very slow. The corresponding SELECT query took on my setup +- 20 times longer than the accepted answer. – parvus Jan 3 at 8:24
1  
@parvus - The question is tagged SQL Server not MySQL. The syntax is fine in SQL Server. Also MySQL is notoriously bad at optimising sub queries see for example here. This answer is fine in SQL Server. In fact NOT IN often performs better than OUTER JOIN ... NULL. I would add a HAVING MAX(ID) IS NOT NULL to the query though even though semantically it ought not be necessary as that can improve the plan example of that here – Martin Smith Jan 4 at 16:27
delete t1
from table t1, table t2
where t1.columnA = t2.columnB
and t1.rowid>t2.rowid
share|improve this answer
SELECT  DISTINCT *
      INTO tempdb.dbo.tmpTable
FROM myTable

TRUNCATE TABLE myTable
INSERT INTO myTable SELECT * FROM tempdb.dbo.tmpTable
DROP TABLE tempdb.dbo.tmpTable
share|improve this answer

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)
share|improve this answer

Quick and Dirty to delete exact duplicated rows (for small tables):

select  distinct * into t2 from t1;
delete from t1;
insert into t1 select *  from t2;
drop table t2;
share|improve this answer
DECLARE  @duplicateTable4 TABLE (data VARCHAR(20))

INSERT INTO @duplicateTable4 VALUES ('not duplicate row')

INSERT INTO @duplicateTable4 VALUES ('duplicate row')

INSERT INTO @duplicateTable4 VALUES ('duplicate row')

INSERT INTO @duplicateTable4 VALUES ('second duplicate row')

INSERT INTO @duplicateTable4 VALUES ('second duplicate row');

    WITH numbered AS 
    ( 
         SELECT data, row_number() OVER ( PARTITION BY data ORDER BY data ) AS RN 
         FROM     @duplicateTable4
    )

DELETE FROM numbered WHERE RN > 1
share|improve this answer
Isn't this the same answer as stackoverflow.com/a/3822833/393908 – Ash Burlaczenko May 2 at 15:49

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 ;)

share|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

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.

share|improve this answer

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)?

share|improve this answer

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 )
share|improve this answer
This assumes that there is at most 1 duplicate. – Martin Smith Oct 2 '10 at 20:11

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
share|improve this answer
CREATE TABLE car(Id int identity(1,1), PersonId int, CarId int)

INSERT INTO car(PersonId,CarId)
VALUES(1,2),(1,3),(1,2),(2,4)

--SELECT * FROM car

;WITH CTE as(
SELECT ROW_NUMBER() over (PARTITION BY personid,carid order by personid,carid) as rn,Id,PersonID,CarId from car)

DELETE FROM car where Id in(SELECT Id FROM CTE WHERE rn>1)
share|improve this answer

I would mention this approach as well as it can be helpful, and works in all SQL servers: Pretty often there is only one - two duplicates, and Ids and count of duplicates are known. In this case:

SET ROWCOUNT 1 -- or set to number of rows to be deleted
delete from myTable where RowId = DuplicatedID
SET ROWCOUNT 0
share|improve this answer
SELECT DISTINCT ROW ID,COL1,COL2,COL3
FROM
MY TABLE
share|improve this answer
Doing this you will not delete the duplicate records, and this is what the author is asking for. – Max Shmelev Jan 21 at 13:00
Select count(col1) 
from table 
group by count(column1) 
having count(*) > 1

you can also include in update, delete

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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