<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Delete Duplicate Rows in MySQL</title>
	<atom:link href="http://damonparker.org/blog/2006/01/17/delete-duplicate-rows-in-mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://damonparker.org/blog/2006/01/17/delete-duplicate-rows-in-mysql/</link>
	<description>code / ecommerce / life</description>
	<lastBuildDate>Sat, 21 Jan 2012 20:11:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: jim.operion</title>
		<link>http://damonparker.org/blog/2006/01/17/delete-duplicate-rows-in-mysql/#comment-26859</link>
		<dc:creator>jim.operion</dc:creator>
		<pubDate>Sat, 21 Jan 2012 20:11:20 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/?p=183#comment-26859</guid>
		<description>Useful solution here... How to delete duplicate rows with SQL
http://www.xaprb.com/blog/2006/10/11/how-to-delete-duplicate-rows-with-sql/</description>
		<content:encoded><![CDATA[<p>Useful solution here&#8230; How to delete duplicate rows with SQL<br />
<a href="http://www.xaprb.com/blog/2006/10/11/how-to-delete-duplicate-rows-with-sql/" rel="nofollow">http://www.xaprb.com/blog/2006/10/11/how-to-delete-duplicate-rows-with-sql/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bharathiraja</title>
		<link>http://damonparker.org/blog/2006/01/17/delete-duplicate-rows-in-mysql/#comment-26850</link>
		<dc:creator>Bharathiraja</dc:creator>
		<pubDate>Thu, 22 Dec 2011 06:45:29 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/?p=183#comment-26850</guid>
		<description>Another solution is we can add UNIQUE KEY for the field productid.

When we are adding UNIQUE KEY, all the duplicate records will  be automatically deleted.

&quot;ALTER IGNORE TABLE products_categories ADD UNIQUE KEY(productid)&quot;</description>
		<content:encoded><![CDATA[<p>Another solution is we can add UNIQUE KEY for the field productid.</p>
<p>When we are adding UNIQUE KEY, all the duplicate records will  be automatically deleted.</p>
<p>&#8220;ALTER IGNORE TABLE products_categories ADD UNIQUE KEY(productid)&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: snork3ls</title>
		<link>http://damonparker.org/blog/2006/01/17/delete-duplicate-rows-in-mysql/#comment-26788</link>
		<dc:creator>snork3ls</dc:creator>
		<pubDate>Sat, 30 Apr 2011 13:37:02 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/?p=183#comment-26788</guid>
		<description>YOU ARE THE BEST!!!! I was looking for this code and i only obtain a full table delete.

I LOVE YOU!!!!</description>
		<content:encoded><![CDATA[<p>YOU ARE THE BEST!!!! I was looking for this code and i only obtain a full table delete.</p>
<p>I LOVE YOU!!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: m4</title>
		<link>http://damonparker.org/blog/2006/01/17/delete-duplicate-rows-in-mysql/#comment-26474</link>
		<dc:creator>m4</dc:creator>
		<pubDate>Fri, 01 Jan 2010 18:48:27 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/?p=183#comment-26474</guid>
		<description>thinks for this tip 
 it&#039;s really useful  
think&#039;s for sharing it</description>
		<content:encoded><![CDATA[<p>thinks for this tip<br />
 it&#8217;s really useful<br />
think&#8217;s for sharing it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Agnel</title>
		<link>http://damonparker.org/blog/2006/01/17/delete-duplicate-rows-in-mysql/#comment-26413</link>
		<dc:creator>Agnel</dc:creator>
		<pubDate>Wed, 30 Sep 2009 13:27:55 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/?p=183#comment-26413</guid>
		<description>Its always has been a trouble to keep up with the database expecially when they have duplicate rows. Nice explanation to solve it.</description>
		<content:encoded><![CDATA[<p>Its always has been a trouble to keep up with the database expecially when they have duplicate rows. Nice explanation to solve it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: viral</title>
		<link>http://damonparker.org/blog/2006/01/17/delete-duplicate-rows-in-mysql/#comment-26297</link>
		<dc:creator>viral</dc:creator>
		<pubDate>Fri, 28 Aug 2009 12:47:46 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/?p=183#comment-26297</guid>
		<description>other simple way is

create table  temp as select * from t1 group by fields;

delete from t1 where id not in (select id from temp )</description>
		<content:encoded><![CDATA[<p>other simple way is</p>
<p>create table  temp as select * from t1 group by fields;</p>
<p>delete from t1 where id not in (select id from temp )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arpit</title>
		<link>http://damonparker.org/blog/2006/01/17/delete-duplicate-rows-in-mysql/#comment-26173</link>
		<dc:creator>Arpit</dc:creator>
		<pubDate>Tue, 30 Sep 2008 15:08:03 +0000</pubDate>
		<guid isPermaLink="false">http://damonparker.org/blog/?p=183#comment-26173</guid>
		<description>Its a good solution...for removing duplicates</description>
		<content:encoded><![CDATA[<p>Its a good solution&#8230;for removing duplicates</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using xcache
Database Caching 16/28 queries in 0.007 seconds using xcache
Content Delivery Network via cdn.damonparker.org/q9i5a4w8/cds/dp

Served from: damonparker.org @ 2012-02-10 05:37:37 -->
