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

Possible Duplicate:
SQL - How can I remove duplicate rows?

I have a table with a very large amount of rows. Duplicates are not allowed but due to a problem with how the rows were created I know there are some duplicates in this table. I need to eliminate the extra rows from the perspective of the key columns. Some other columns may have slightly different data but I do not care about that. I still need to keep one of these rows however. SELECT DISTINCT won't work because it operates on all columns and I need to suppress duplicates based on the key columns.

How can I delete the extra rows but still keep one efficiently?

share|improve this question
1  
Heh, "Deleting all duplicate rows but keeping one [duplicate]". – Shaz Jun 11 at 19:34

marked as duplicate by Jeff Atwood Oct 8 '11 at 16:52

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

3 Answers

up vote 35 down vote accepted

You didn't say what version you were using, but in SQL 2005 and above, you can use a common table expression. It goes a little something like this:

with cte as (
  select [foo], [bar], 
     row_number() over (partition by foo, bar order by baz) as [rn]
  from table
)
delete cte where [rn] > 1

Play around with it and see what you get.

share|improve this answer
Thank you for this, never knew that's how CTEs worked. – Dean Thomas Oct 6 '11 at 10:10
1  
This will retain the last duplicate row or the first row ? – charles sun Dec 22 '11 at 15:48
Awesome Ben. Saved my life – Red Nightingale Feb 2 '12 at 14:47
Just got pulled back to this answer and noticed the question re: which dupe will it retain. As written, it will retain the "first" duplicate row, where "first" means "lowest ordering according to baz". Of course, if ever you're unsure of what will be deleted/retained, turn the delete into a select and make sure. Better safe than sorry. – Ben Thul Sep 19 '12 at 1:03

Here's my twist on it...

DELETE FROM MyTable WHERE Id IN (
    SELECT Id FROM (
        SELECT 
            Id
            ,ROW_NUMBER() OVER (PARTITION BY [Column] ORDER BY Id) AS [ItemNumber]
            -- Change the partition columns to include the ones that make the row distinct
        FROM 
            MyTable
    ) a WHERE ItemNumber > 1 -- Keep only the first unique item
)

Not sure why that's what I thought of first... definitely not the simplest way to go but it works.

share|improve this answer

Example query:

DELETE FROM Table
WHERE ID NOT IN
(
SELECT MIN(ID)
FROM Table
GROUP BY Field1, Field2, Field3, ...
)

Here fields are column on which you want to group the duplicate rows.

share|improve this answer

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