<?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: MySQL- Remove Duplicate Rows</title>
	<atom:link href="http://www.brightcherry.co.uk/scribbles/2009/11/22/mysql-remove-duplicate-rows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brightcherry.co.uk/scribbles/2009/11/22/mysql-remove-duplicate-rows/</link>
	<description></description>
	<lastBuildDate>Wed, 25 Aug 2010 19:01:17 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: kandar</title>
		<link>http://www.brightcherry.co.uk/scribbles/2009/11/22/mysql-remove-duplicate-rows/comment-page-1/#comment-907</link>
		<dc:creator>kandar</dc:creator>
		<pubDate>Mon, 08 Feb 2010 01:23:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.brightcherry.co.uk/scribbles/?p=189#comment-907</guid>
		<description>thanks for your response. I&#039;ll be wait for that article.</description>
		<content:encoded><![CDATA[<p>thanks for your response. I&#8217;ll be wait for that article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maruf</title>
		<link>http://www.brightcherry.co.uk/scribbles/2009/11/22/mysql-remove-duplicate-rows/comment-page-1/#comment-904</link>
		<dc:creator>Maruf</dc:creator>
		<pubDate>Sat, 06 Feb 2010 08:44:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.brightcherry.co.uk/scribbles/?p=189#comment-904</guid>
		<description>@Kevin,
Good point :)

@Kandar,
You&#039;ll need to use the IGNORE function, while also setting the correct &quot;unique&quot; fields.

I will write an article on this shortly. Not sure I can explain how to do it without a live example.

Kind regards.</description>
		<content:encoded><![CDATA[<p>@Kevin,<br />
Good point <img src='http://www.brightcherry.co.uk/scribbles/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>@Kandar,<br />
You&#8217;ll need to use the IGNORE function, while also setting the correct &#8220;unique&#8221; fields.</p>
<p>I will write an article on this shortly. Not sure I can explain how to do it without a live example.</p>
<p>Kind regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kandar</title>
		<link>http://www.brightcherry.co.uk/scribbles/2009/11/22/mysql-remove-duplicate-rows/comment-page-1/#comment-903</link>
		<dc:creator>kandar</dc:creator>
		<pubDate>Sat, 06 Feb 2010 05:09:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.brightcherry.co.uk/scribbles/?p=189#comment-903</guid>
		<description>Great! my question is how to prevent it happen again in the future?</description>
		<content:encoded><![CDATA[<p>Great! my question is how to prevent it happen again in the future?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kevin Pajak</title>
		<link>http://www.brightcherry.co.uk/scribbles/2009/11/22/mysql-remove-duplicate-rows/comment-page-1/#comment-902</link>
		<dc:creator>Kevin Pajak</dc:creator>
		<pubDate>Fri, 05 Feb 2010 23:39:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.brightcherry.co.uk/scribbles/?p=189#comment-902</guid>
		<description>Good article! One point of clarification to your readers though: you will want to be sure that the name of the column you are entering data into matches the name of the column as you set it up when you were creating your table. Ex: You created the table thusly:
CREATE TABLE `DB_NAME`.`postcodes2` (
`postcodenospace` varchar( 10 ) NOT NULL ,
`longitude` varchar( 15 ) NOT NULL ,
`latitude` varchar( 15 ) NOT NULL
)
 
So when you INSERT data it would be


INSERT INTO
postcodes2
(
postcodenospace,
longitude,
latitude
)


Nice work - thanks again for posting ;).</description>
		<content:encoded><![CDATA[<p>Good article! One point of clarification to your readers though: you will want to be sure that the name of the column you are entering data into matches the name of the column as you set it up when you were creating your table. Ex: You created the table thusly:<br />
CREATE TABLE `DB_NAME`.`postcodes2` (<br />
`postcodenospace` varchar( 10 ) NOT NULL ,<br />
`longitude` varchar( 15 ) NOT NULL ,<br />
`latitude` varchar( 15 ) NOT NULL<br />
)</p>
<p>So when you INSERT data it would be</p>
<p>INSERT INTO<br />
postcodes2<br />
(<br />
postcodenospace,<br />
longitude,<br />
latitude<br />
)</p>
<p>Nice work &#8211; thanks again for posting <img src='http://www.brightcherry.co.uk/scribbles/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
]]></content:encoded>
	</item>
</channel>
</rss>
