SQL - How can I remove duplicate rows? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T14:35:05Z http://stackoverflow.com/feeds/question/18932 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/18932/sql-how-can-i-remove-duplicate-rows 19 SQL - How can I remove duplicate rows? Terrapin 2008-08-20T21:51:29Z 2009-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#18934 7 Answer by Jon Galloway for SQL - How can I remove duplicate rows? Jon Galloway 2008-08-20T21:53:14Z 2008-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 &gt; fullTable.uniqueField </code></pre> http://stackoverflow.com/questions/18932/sql-how-can-i-remove-duplicate-rows/18937#18937 0 Answer by Vaibhav for SQL - How can I remove duplicate rows? Vaibhav 2008-08-20T21:53:30Z 2008-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 -1 Answer by nmiranda for SQL - How can I remove duplicate rows? nmiranda 2008-08-20T21:56:36Z 2008-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#18947 1 Answer by Craig for SQL - How can I remove duplicate rows? Craig 2008-08-20T21:58:00Z 2008-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#18949 38 Answer by Mark Brackett for SQL - How can I remove duplicate rows? Mark Brackett 2008-08-20T22:00:00Z 2008-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#18951 0 Answer by Terrapin for SQL - How can I remove duplicate rows? Terrapin 2008-08-20T22:01:13Z 2008-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#18954 0 Answer by FlySwat for SQL - How can I remove duplicate rows? FlySwat 2008-08-20T22:02:31Z 2008-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#18968 1 Answer by Terrapin for SQL - How can I remove duplicate rows? Terrapin 2008-08-20T22:13:47Z 2008-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#18983 0 Answer by Jacob Proffitt for SQL - How can I remove duplicate rows? Jacob Proffitt 2008-08-20T22:27:53Z 2008-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#19034 0 Answer by DrPizza for SQL - How can I remove duplicate rows? DrPizza 2008-08-20T22:53:12Z 2008-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 &gt; 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#19055 0 Answer by JosephStyons for SQL - How can I remove duplicate rows? JosephStyons 2008-08-20T23:04:55Z 2008-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 &lt;&gt; t2.pk_field1 or t1.pk_field2 &lt;&gt; 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 &lt;&gt; t2.pk_field1 or t1.pk_field2 &lt;&gt; 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#839710 0 Answer by Kamil for SQL - How can I remove duplicate rows? Kamil 2009-05-08T13:06:42Z 2009-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#839716 0 Answer by Peter for SQL - How can I remove duplicate rows? Peter 2009-05-08T13:09:03Z 2009-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>