<?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>Rahmansaher &#187; pl/sql</title>
	<atom:link href="http://blog.rahmansaher.com/tag/plsql/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.rahmansaher.com</link>
	<description>Musings Of Everything</description>
	<lastBuildDate>Mon, 20 Oct 2008 05:55:13 +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>How to find multiple/duplicate rows with the same value</title>
		<link>http://blog.rahmansaher.com/2008/06/how-to-find-multipleduplicate-rows-with-the-same-value/</link>
		<comments>http://blog.rahmansaher.com/2008/06/how-to-find-multipleduplicate-rows-with-the-same-value/#comments</comments>
		<pubDate>Fri, 27 Jun 2008 19:27:43 +0000</pubDate>
		<dc:creator>Rahmansaher</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[duplicate rows]]></category>
		<category><![CDATA[mutiple rows]]></category>
		<category><![CDATA[pl/sql]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://mujeeb.uni.cc/?p=60</guid>
		<description><![CDATA[Just a short SQL script which will allow you to find the mutiple rows with the same values in the same table. I am not going to explain what the query does since its a very straight forward query
PLAIN TEXT
SQL:




SELECT &#91;column_name&#93;


FROM &#91;tablename&#93;


GROUP BY &#91;column_name&#93;


HAVING count&#40;*&#41;&#62; 1


--  OR


&#160;


SELECT * FROM &#91;TableName&#93; WHERE &#91;ColumnName&#93; IN &#40;


SELECT &#91;ColumnName&#93; [...]]]></description>
		<wfw:commentRss>http://blog.rahmansaher.com/2008/06/how-to-find-multipleduplicate-rows-with-the-same-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
