<?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>duplicates &#8211; Blogvaria</title>
	<atom:link href="https://blog.evaria.com/key/duplicates/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.evaria.com</link>
	<description>The personal pages</description>
	<lastBuildDate>Thu, 28 Nov 2013 14:10:49 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>
<site xmlns="com-wordpress:feed-additions:1">1077093</site>	<item>
		<title>Finding duplicate entries in MySQL</title>
		<link>https://blog.evaria.com/2012/finding-duplicate-entries-in-mysql/</link>
		
		<dc:creator><![CDATA[Thomas]]></dc:creator>
		<pubDate>Mon, 21 May 2012 10:17:12 +0000</pubDate>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[duplicates]]></category>
		<category><![CDATA[mysql]]></category>
		<guid isPermaLink="false">http://blog.evaria.com/?p=1381</guid>

					<description><![CDATA[From time to time I need to check for duplicate entries in my databases. E.g. when I have large numbers of clients signing up for events or similar. I know &#8230; ]]></description>
										<content:encoded><![CDATA[<p>From time to time I need to check for duplicate entries in my databases. E.g. when I have large numbers of clients signing up for events or similar.</p>
<p>I know there&#8217;s ways of deleting multiple entries but sometimes I just need to find out WHO and HOW MANY. The following simple query does just that:</p>
<pre>SELECT the_field_name, count(*) AS n FROM the_table GROUP BY the_field_name HAVING n>1;</pre>
<p>Hope this proves useful for some of you having the same &#8220;problem&#8221;.</p>
<p>Should you just wish to remove any duplicate entries then take a look at <a href="http://www.justin-cook.com/wp/2006/12/12/remove-duplicate-entries-rows-a-mysql-database-table/" target="_blank">Justin Cook&#8217;s article</a> on the subject.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1381</post-id>	</item>
	</channel>
</rss>
