SQL - How can I remove duplicate rows? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T14:35:05Zhttp://stackoverflow.com/feeds/question/18932http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/18932/sql-how-can-i-remove-duplicate-rows19SQL - How can I remove duplicate rows?Terrapin2008-08-20T21:51:29Z2009-05-08T13:09:03Z
<p>What is the best way to remove duplicate rows from a fairly large table (i.e. 300,000+ rows)?</p>
<p>The rows of course will not be perfect duplicates because of the existence of the RowID identity field.</p>
<pre><code>MyTable
-----------
RowID int not null identity(1,1) primary key,
Col1 varchar(20) not null,
Col2 varchar(2048) not null,
Col3 tinyint not null
</code></pre>
http://stackoverflow.com/questions/18932/sql-how-can-i-remove-duplicate-rows/18934#189347Answer by Jon Galloway for SQL - How can I remove duplicate rows?Jon Galloway2008-08-20T21:53:14Z2008-08-20T22:01:53Z<p>There's a good article on <a href="http://support.microsoft.com/kb/139444" rel="nofollow">removing duplicates</a> 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.</p>
<p>I've used self-joins to do this in the past, although it could probably be prettied up with a HAVING clause:</p>
<pre><code>delete from dupes
from MyTable dupes, MyTable fullTable
where dupes.dupField = fullTable.dupField
and dupes.secondDupField = fullTable.secondDupField
and dupes.uniqueField > fullTable.uniqueField
</code></pre>
http://stackoverflow.com/questions/18932/sql-how-can-i-remove-duplicate-rows/18937#189370Answer by Vaibhav for SQL - How can I remove duplicate rows?Vaibhav2008-08-20T21:53:30Z2008-08-20T21:53:30Z<p>Create a new temporary table. For each row in the old table, check if it exists in the temp table, if it doesn't insert it, if it exists, then move to the next row.</p>
<p>Once done, drop the original, and rename the temp.</p>
http://stackoverflow.com/questions/18932/sql-how-can-i-remove-duplicate-rows/18945#18945-1Answer by nmiranda for SQL - How can I remove duplicate rows?nmiranda2008-08-20T21:56:36Z2008-08-20T21:56:36Z<p>select distinct col1, col2, col3 from mytable.</p>
<p>Do not include the RowId column in your select</p>
http://stackoverflow.com/questions/18932/sql-how-can-i-remove-duplicate-rows/18947#189471Answer by Craig for SQL - How can I remove duplicate rows?Craig2008-08-20T21:58:00Z2008-08-20T21:58:00Z<p>Here is another good article on <a href="http://www.xaprb.com/blog/2007/02/06/how-to-delete-duplicate-rows-with-sql-part-2/" rel="nofollow">removing duplicates</a>.</p>
<p>It discusses why its hard: "<em>SQL is based on relational algebra, and duplicates cannot occur in relational algebra, because duplicates are not allowed in a set.</em>"</p>
<p>The temp table solution, and two mysql examples.</p>
<p>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 ;)</p>
http://stackoverflow.com/questions/18932/sql-how-can-i-remove-duplicate-rows/18949#1894938Answer by Mark Brackett for SQL - How can I remove duplicate rows?Mark Brackett2008-08-20T22:00:00Z2008-08-20T22:00:00Z<p>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:</p>
<pre><code>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
</code></pre>
http://stackoverflow.com/questions/18932/sql-how-can-i-remove-duplicate-rows/18951#189510Answer by Terrapin for SQL - How can I remove duplicate rows?Terrapin2008-08-20T22:01:13Z2008-08-20T22:01:13Z<p><a href="http://beta.stackoverflow.com/questions/18932/sql-how-can-i-remove-duplicate-rows#18947" rel="nofollow">@Craig</a></p>
<blockquote>
<p>In the future are you going to prevent it at a database level, or from an application perspective</p>
</blockquote>
<p>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.</p>
http://stackoverflow.com/questions/18932/sql-how-can-i-remove-duplicate-rows/18954#189540Answer by FlySwat for SQL - How can I remove duplicate rows?FlySwat2008-08-20T22:02:31Z2008-08-20T22:02:31Z<p>@nmiranda:</p>
<p>The question was how to delete duplicates from the table, not how to query them.</p>
<p>I believe the original poster wants advice on how to clean up a table.</p>
<p>The correct way to do this:</p>
<ol>
<li>Create a temporary table.</li>
<li>Create a cursor.</li>
<li>SELECT DISTINCT col1,col2,col3 FROM ORGINAL_TABLE -- No RowID</li>
<li>Using the cursor, insert each row from the this result set into the temp table.</li>
<li>Drop the original table</li>
<li>Rename the temp table.</li>
</ol>
<p>The main problem with this approach is that if your primary keys were autogenerated, they will get trashed.</p>
http://stackoverflow.com/questions/18932/sql-how-can-i-remove-duplicate-rows/18968#189681Answer by Terrapin for SQL - How can I remove duplicate rows?Terrapin2008-08-20T22:13:47Z2008-08-20T22:13:47Z<p><a href="http://beta.stackoverflow.com/questions/18932/sql-how-can-i-remove-duplicate-rows#18949" rel="nofollow">@me.yahoo.com/brackett</a></p>
<p>Thanks for the solution - I implemented it and it works great. Deleted 294,378 duplicate rows in 6 seconds.</p>
http://stackoverflow.com/questions/18932/sql-how-can-i-remove-duplicate-rows/18983#189830Answer by Jacob Proffitt for SQL - How can I remove duplicate rows?Jacob Proffitt2008-08-20T22:27:53Z2008-08-20T22:27:53Z<p>Oh sure. Use a temp table. If you want a single, not-very-performant statement that "works" you can go with:</p>
<pre><code>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)
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/18932/sql-how-can-i-remove-duplicate-rows/19034#190340Answer by DrPizza for SQL - How can I remove duplicate rows?DrPizza2008-08-20T22:53:12Z2008-08-20T22:53:12Z<blockquote>
<p>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.</p>
</blockquote>
<p>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:</p>
<pre><code>-- 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
</code></pre>
<p>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)?</p>
http://stackoverflow.com/questions/18932/sql-how-can-i-remove-duplicate-rows/19055#190550Answer by JosephStyons for SQL - How can I remove duplicate rows?JosephStyons2008-08-20T23:04:55Z2008-08-21T15:05:38Z<pre><code>delete from my_dummy_table
where (pk_field1,pk_field2) in(
select
t.pk_field1
,t.pk_field2
from
my_dummy_table t
,(
select
t1.pk_field1
,t1.pk_field2
from
my_dummy_table t1
,my_dummy_table t2
where 1=1
and (
t1.pk_field1 <> t2.pk_field1
or
t1.pk_field2 <> t2.pk_field2
)
and t1.dup_field1 = t2.dup_field1
and t1.dup_field2 = t2.dup_field2
) duplicates
where t.pk_field1 = duplicates.pk_field1
and t.pk_field2 = duplicates.pk_field2
and t.pk_field1||'-'||t.pk_field2 not in(
select
min(t1.pk_field1||'-'||t1.pk_field2) as keep_this_one
from
my_dummy_table t1
,my_dummy_table t2
where 1=1
and (
t1.pk_field1 <> t2.pk_field1
or
t1.pk_field2 <> t2.pk_field2
)
and t1.dup_field1 = t2.dup_field1
and t1.dup_field2 = t2.dup_field2
group by
t1.dup_field1
,t1.dup_field2
)
)
</code></pre>
http://stackoverflow.com/questions/18932/sql-how-can-i-remove-duplicate-rows/839710#8397100Answer by Kamil for SQL - How can I remove duplicate rows?Kamil2009-05-08T13:06:42Z2009-05-08T13:06:42Z<ol>
<li><p>Create new blank table with the same structure</p></li>
<li><p>Execute query like this</p>
<p>INSERT INTO tc_category1
SELECT *
FROM tc_category
GROUP BY category_id, application_id
HAVING count(*) > 1</p></li>
<li><p>Then execute this query</p>
<p>INSERT INTO tc_category1
SELECT *
FROM tc_category
GROUP BY category_id, application_id
HAVING count(*) = 1</p></li>
</ol>
http://stackoverflow.com/questions/18932/sql-how-can-i-remove-duplicate-rows/839716#8397160Answer by Peter for SQL - How can I remove duplicate rows?Peter2009-05-08T13:09:03Z2009-05-08T13:09:03Z<p><a href="http://peterhelsen.blogspot.com/2009/03/deleting-double-records-with-tsql-and.html" rel="nofollow">http://peterhelsen.blogspot.com/2009/03/deleting-double-records-with-tsql-and.html</a></p>