<?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/mysql-remove-duplicate-rows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brightcherry.co.uk/scribbles/mysql-remove-duplicate-rows/</link>
	<description></description>
	<lastBuildDate>Sat, 21 Jan 2012 16:15:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: cursedhymn</title>
		<link>http://www.brightcherry.co.uk/scribbles/mysql-remove-duplicate-rows/#comment-1114</link>
		<dc:creator>cursedhymn</dc:creator>
		<pubDate>Thu, 11 Nov 2010 22:06:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.brightcherry.co.uk/scribbles/?p=189#comment-1114</guid>
		<description>&lt;3 ty so much for this post. This post helped me figure out how to knock out the query I was having issues with.</description>
		<content:encoded><![CDATA[<p>&lt;3 ty so much for this post. This post helped me figure out how to knock out the query I was having issues with.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kandar</title>
		<link>http://www.brightcherry.co.uk/scribbles/mysql-remove-duplicate-rows/#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/mysql-remove-duplicate-rows/#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,
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 />
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/mysql-remove-duplicate-rows/#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/mysql-remove-duplicate-rows/#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>

