<?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: SQL SERVER - 2005 - Difference Between INTERSECT and INNER JOIN - INTERSECT vs. INNER JOIN</title>
	<atom:link href="http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/</link>
	<description>Notes of a SQL Server MVP and Database Administrator</description>
	<pubDate>Wed, 07 Jan 2009 16:39:29 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Saubhagya</title>
		<link>http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/#comment-44903</link>
		<dc:creator>Saubhagya</dc:creator>
		<pubDate>Thu, 18 Dec 2008 07:31:23 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=772#comment-44903</guid>
		<description>Hi Pinal,

I am facing an issue with MS SQL 2000 inner joins. Though the systax is runnig fine in 2005 i.e, using "*" for outer joins. But same syntax raising error on 2000

Kindly suggest

Regards
Saubhagya</description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>I am facing an issue with MS SQL 2000 inner joins. Though the systax is runnig fine in 2005 i.e, using &#8220;*&#8221; for outer joins. But same syntax raising error on 2000</p>
<p>Kindly suggest</p>
<p>Regards<br />
Saubhagya</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LN</title>
		<link>http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/#comment-43763</link>
		<dc:creator>LN</dc:creator>
		<pubDate>Fri, 17 Oct 2008 08:39:37 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=772#comment-43763</guid>
		<description>Very Nice...</description>
		<content:encoded><![CDATA[<p>Very Nice&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mitesh L Shah</title>
		<link>http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/#comment-43758</link>
		<dc:creator>Mitesh L Shah</dc:creator>
		<pubDate>Fri, 17 Oct 2008 04:17:10 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=772#comment-43758</guid>
		<description>INTERSECT what's make differece with UNION</description>
		<content:encoded><![CDATA[<p>INTERSECT what&#8217;s make differece with UNION</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dinesh</title>
		<link>http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/#comment-43154</link>
		<dc:creator>Dinesh</dc:creator>
		<pubDate>Tue, 23 Sep 2008 11:11:39 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=772#comment-43154</guid>
		<description>Hi Pinal,
I have a huge set of data that needs to be ported to another table. i have to port a single record at a time. Iam currently using a cursor to do the same. Can we go for OLE DB Command flow in SSIS? will it have advantage over cursor.
Could you please clarify this?</description>
		<content:encoded><![CDATA[<p>Hi Pinal,<br />
I have a huge set of data that needs to be ported to another table. i have to port a single record at a time. Iam currently using a cursor to do the same. Can we go for OLE DB Command flow in SSIS? will it have advantage over cursor.<br />
Could you please clarify this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dinesh</title>
		<link>http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/#comment-43153</link>
		<dc:creator>Dinesh</dc:creator>
		<pubDate>Tue, 23 Sep 2008 11:08:44 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=772#comment-43153</guid>
		<description>So when an inner join can be applied only on a primary key column / Foreign column , the Intersect can pull out the exact matching record based on the all the columns of the result set.Is that right?</description>
		<content:encoded><![CDATA[<p>So when an inner join can be applied only on a primary key column / Foreign column , the Intersect can pull out the exact matching record based on the all the columns of the result set.Is that right?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: harkishan</title>
		<link>http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/#comment-42935</link>
		<dc:creator>harkishan</dc:creator>
		<pubDate>Thu, 18 Sep 2008 11:50:56 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=772#comment-42935</guid>
		<description>this is working fine. but if I put 

SELECT DISTINCT va.VendorID,va.ModifiedDate, *
FROM Purchasing.VendorContact vc
INNER JOIN Purchasing.VendorAddress va ON vc.VendorID = va.VendorID
AND vc.ModifiedDate = va.ModifiedDate

thn it fetches all the records.

please let me know what to do for this?</description>
		<content:encoded><![CDATA[<p>this is working fine. but if I put </p>
<p>SELECT DISTINCT va.VendorID,va.ModifiedDate, *<br />
FROM Purchasing.VendorContact vc<br />
INNER JOIN Purchasing.VendorAddress va ON vc.VendorID = va.VendorID<br />
AND vc.ModifiedDate = va.ModifiedDate</p>
<p>thn it fetches all the records.</p>
<p>please let me know what to do for this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lavi</title>
		<link>http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/#comment-41813</link>
		<dc:creator>lavi</dc:creator>
		<pubDate>Wed, 20 Aug 2008 07:46:50 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=772#comment-41813</guid>
		<description>what is joins,and type of join.
differenciate all the joins</description>
		<content:encoded><![CDATA[<p>what is joins,and type of join.<br />
differenciate all the joins</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lakshmi</title>
		<link>http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/#comment-41760</link>
		<dc:creator>Lakshmi</dc:creator>
		<pubDate>Mon, 18 Aug 2008 14:46:52 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=772#comment-41760</guid>
		<description>Good post.  It shows the fine difference.</description>
		<content:encoded><![CDATA[<p>Good post.  It shows the fine difference.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: karthi</title>
		<link>http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/#comment-41736</link>
		<dc:creator>karthi</dc:creator>
		<pubDate>Sun, 17 Aug 2008 14:14:06 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=772#comment-41736</guid>
		<description>Hi Pinal,

Your blog is ultimate.I'm new to SQL Server.

Can you please explain me about  joins with exambles?</description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>Your blog is ultimate.I&#8217;m new to SQL Server.</p>
<p>Can you please explain me about  joins with exambles?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sravan</title>
		<link>http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/#comment-41511</link>
		<dc:creator>sravan</dc:creator>
		<pubDate>Sat, 09 Aug 2008 06:35:58 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=772#comment-41511</guid>
		<description>ohh,i bliendly posted above query

actually which is efficent permormance wise

either INTERSECT or INNER JOIN</description>
		<content:encoded><![CDATA[<p>ohh,i bliendly posted above query</p>
<p>actually which is efficent permormance wise</p>
<p>either INTERSECT or INNER JOIN</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sravan</title>
		<link>http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/#comment-41510</link>
		<dc:creator>sravan</dc:creator>
		<pubDate>Sat, 09 Aug 2008 06:16:41 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=772#comment-41510</guid>
		<description>It's really good
 i have doubt that
INTERSECT and UNION ALL works same are not</description>
		<content:encoded><![CDATA[<p>It&#8217;s really good<br />
 i have doubt that<br />
INTERSECT and UNION ALL works same are not</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nanda</title>
		<link>http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/#comment-41411</link>
		<dc:creator>Nanda</dc:creator>
		<pubDate>Wed, 06 Aug 2008 22:39:17 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=772#comment-41411</guid>
		<description>It's really good blog and like to read all articles in this blogs. Good post and well explained.</description>
		<content:encoded><![CDATA[<p>It&#8217;s really good blog and like to read all articles in this blogs. Good post and well explained.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Borozdin</title>
		<link>http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/#comment-41383</link>
		<dc:creator>Mike Borozdin</dc:creator>
		<pubDate>Wed, 06 Aug 2008 09:18:58 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=772#comment-41383</guid>
		<description>Good post! Well explained!</description>
		<content:encoded><![CDATA[<p>Good post! Well explained!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER - Query to Find Column From All Tables of Database Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/#comment-41368</link>
		<dc:creator>SQL SERVER - Query to Find Column From All Tables of Database Journey to SQL Authority with Pinal Dave</dc:creator>
		<pubDate>Wed, 06 Aug 2008 01:31:02 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=772#comment-41368</guid>
		<description>[...] August 6, 2008 by pinaldave    One question came up just a day ago while I was writing SQL SERVER - 2005 - Difference Between INTERSECT and INNER JOIN - INTERSECT vs. INNER JOIN. [...]</description>
		<content:encoded><![CDATA[<p>[...] August 6, 2008 by pinaldave    One question came up just a day ago while I was writing SQL SERVER - 2005 - Difference Between INTERSECT and INNER JOIN - INTERSECT vs. INNER JOIN. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mukesh</title>
		<link>http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/#comment-41357</link>
		<dc:creator>Mukesh</dc:creator>
		<pubDate>Tue, 05 Aug 2008 19:53:39 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=772#comment-41357</guid>
		<description>Nice description Pinal,Thanks a lot .--Mukesh Sharma</description>
		<content:encoded><![CDATA[<p>Nice description Pinal,Thanks a lot .&#8211;Mukesh Sharma</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeetesh Garg</title>
		<link>http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/#comment-41331</link>
		<dc:creator>Jeetesh Garg</dc:creator>
		<pubDate>Tue, 05 Aug 2008 06:29:46 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=772#comment-41331</guid>
		<description>Hi Pinal/Dan/gabreil,

I have checked it and the problem came due to not fully installed SQL SERVER 2005.

So Thanks for your suggestion.

Thanks,

Jeetesh garg</description>
		<content:encoded><![CDATA[<p>Hi Pinal/Dan/gabreil,</p>
<p>I have checked it and the problem came due to not fully installed SQL SERVER 2005.</p>
<p>So Thanks for your suggestion.</p>
<p>Thanks,</p>
<p>Jeetesh garg</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan</title>
		<link>http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/#comment-41305</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Mon, 04 Aug 2008 14:46:32 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=772#comment-41305</guid>
		<description>Jeetesh garg-

Check your compatablilty level. If you are running SQL Server 2005 in level 70 or 80, you could have similar behavior to what you are describing. 

-Dan</description>
		<content:encoded><![CDATA[<p>Jeetesh garg-</p>
<p>Check your compatablilty level. If you are running SQL Server 2005 in level 70 or 80, you could have similar behavior to what you are describing. </p>
<p>-Dan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gabriel</title>
		<link>http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/#comment-41297</link>
		<dc:creator>Gabriel</dc:creator>
		<pubDate>Mon, 04 Aug 2008 13:20:37 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=772#comment-41297</guid>
		<description>Jeetesh Garg, 

you sure that de compatibility level is 90</description>
		<content:encoded><![CDATA[<p>Jeetesh Garg, </p>
<p>you sure that de compatibility level is 90</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lekan</title>
		<link>http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/#comment-41294</link>
		<dc:creator>Lekan</dc:creator>
		<pubDate>Mon, 04 Aug 2008 12:27:13 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=772#comment-41294</guid>
		<description>Hi Pinal,

Thanks for the post, now I think I prefer to Intersect/Except command, i feel comfortable with them than inner join.

Thanks,
Lekan</description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>Thanks for the post, now I think I prefer to Intersect/Except command, i feel comfortable with them than inner join.</p>
<p>Thanks,<br />
Lekan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Roger Steva</title>
		<link>http://blog.sqlauthority.com/2008/08/03/sql-server-2005-difference-between-intersect-and-inner-join-intersect-vs-inner-join/#comment-41292</link>
		<dc:creator>Roger Steva</dc:creator>
		<pubDate>Mon, 04 Aug 2008 12:09:09 +0000</pubDate>
		<guid isPermaLink="false">http://sqlauthority.wordpress.com/?p=772#comment-41292</guid>
		<description>Jeetesh,

Your script works fine for me as well. Pinal has already posted screenshots for this example in post above. 

I think you are not using SQL Server 2k5.</description>
		<content:encoded><![CDATA[<p>Jeetesh,</p>
<p>Your script works fine for me as well. Pinal has already posted screenshots for this example in post above. </p>
<p>I think you are not using SQL Server 2k5.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
