<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Rachel's Blog &#187; MySQL</title>
	<atom:link href="http://www.willmer.com/kb/category/databases/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.willmer.com/kb</link>
	<description></description>
	<lastBuildDate>Tue, 31 Aug 2010 08:48:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>checking for duplicates</title>
		<link>http://www.willmer.com/kb/2009/05/checking-for-duplicates/</link>
		<comments>http://www.willmer.com/kb/2009/05/checking-for-duplicates/#comments</comments>
		<pubDate>Fri, 08 May 2009 15:24:07 +0000</pubDate>
		<dc:creator>Rachel</dc:creator>
				<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.willmer.com/kb/2009/05/checking-for-duplicates/</guid>
		<description><![CDATA[if for example, you want to apply a unique index, but you can&#8217;t because there&#8217;s duplicates in the table.
SELECT name FROM mytable GROUP BY name HAVING COUNT(*) > 1;
]]></description>
			<content:encoded><![CDATA[<p>if for example, you want to apply a unique index, but you can&#8217;t because there&#8217;s duplicates in the table.</p>
<p><code>SELECT name FROM mytable GROUP BY name HAVING COUNT(*) > 1;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.willmer.com/kb/2009/05/checking-for-duplicates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
