<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; Quick Note about JOIN &#8211; Common Questions and Simple Answers</title>
	<atom:link href="http://blog.sqlauthority.com/2011/10/04/sql-server-quick-note-about-join-common-questions-and-simple-answers/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2011/10/04/sql-server-quick-note-about-join-common-questions-and-simple-answers/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 17 May 2013 15:26:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: SQLAuthority News &#8211; An Year Worth Remembering and Looking Forward to Better Next Year &#171; SQL Server Journey with SQLAuthority</title>
		<link>http://blog.sqlauthority.com/2011/10/04/sql-server-quick-note-about-join-common-questions-and-simple-answers/#comment-228852</link>
		<dc:creator><![CDATA[SQLAuthority News &#8211; An Year Worth Remembering and Looking Forward to Better Next Year &#171; SQL Server Journey with SQLAuthority]]></dc:creator>
		<pubDate>Sat, 31 Dec 2011 01:31:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=14816#comment-228852</guid>
		<description><![CDATA[[...] Denali – Conversion Function – Difference between PARSE(), TRY_PARSE(), TRY_CONVERT()  October: SQL SERVER – Quick Note about JOIN – Common Questions and Simple Answers  November: SQL SERVER – Puzzle to Win Print Book – Functions FIRST_VALUE and LAST_VALUE with [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Denali – Conversion Function – Difference between PARSE(), TRY_PARSE(), TRY_CONVERT()  October: SQL SERVER – Quick Note about JOIN – Common Questions and Simple Answers  November: SQL SERVER – Puzzle to Win Print Book – Functions FIRST_VALUE and LAST_VALUE with [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raghav</title>
		<link>http://blog.sqlauthority.com/2011/10/04/sql-server-quick-note-about-join-common-questions-and-simple-answers/#comment-191635</link>
		<dc:creator><![CDATA[Raghav]]></dc:creator>
		<pubDate>Wed, 09 Nov 2011 14:59:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=14816#comment-191635</guid>
		<description><![CDATA[Thanks for such a good post.]]></description>
		<content:encoded><![CDATA[<p>Thanks for such a good post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramdas</title>
		<link>http://blog.sqlauthority.com/2011/10/04/sql-server-quick-note-about-join-common-questions-and-simple-answers/#comment-176108</link>
		<dc:creator><![CDATA[Ramdas]]></dc:creator>
		<pubDate>Fri, 07 Oct 2011 13:39:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=14816#comment-176108</guid>
		<description><![CDATA[I like the emphasis on using the INNER JOIN clause instead of using a where to join the columns.]]></description>
		<content:encoded><![CDATA[<p>I like the emphasis on using the INNER JOIN clause instead of using a where to join the columns.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kumar Harsh</title>
		<link>http://blog.sqlauthority.com/2011/10/04/sql-server-quick-note-about-join-common-questions-and-simple-answers/#comment-175297</link>
		<dc:creator><![CDATA[Kumar Harsh]]></dc:creator>
		<pubDate>Wed, 05 Oct 2011 07:25:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=14816#comment-175297</guid>
		<description><![CDATA[SELECT t1.*, t2.*
FROM t1 INNER JOIN t2 ON t1.col1 = t2.col1

This is also better because,join type can easily be change.
For example ,I wrote inner join later on i realize it should be left join.
I just have to replace inner with left.]]></description>
		<content:encoded><![CDATA[<p>SELECT t1.*, t2.*<br />
FROM t1 INNER JOIN t2 ON t1.col1 = t2.col1</p>
<p>This is also better because,join type can easily be change.<br />
For example ,I wrote inner join later on i realize it should be left join.<br />
I just have to replace inner with left.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pinaldave</title>
		<link>http://blog.sqlauthority.com/2011/10/04/sql-server-quick-note-about-join-common-questions-and-simple-answers/#comment-174900</link>
		<dc:creator><![CDATA[pinaldave]]></dc:creator>
		<pubDate>Tue, 04 Oct 2011 08:30:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=14816#comment-174900</guid>
		<description><![CDATA[Rob - you are 100% correct. 

I agree.

The point of the example was just to demonstrate sub query and inner join syntax. Not the actual query - just to give idea. 

Usually I use AdventureWorks database to build the real example.

However, your additionally explanation now will remove any further confusion if there is on this subject. 

Thanks for taking time - I am so waiting to meet you soon.

Regards,]]></description>
		<content:encoded><![CDATA[<p>Rob &#8211; you are 100% correct. </p>
<p>I agree.</p>
<p>The point of the example was just to demonstrate sub query and inner join syntax. Not the actual query &#8211; just to give idea. </p>
<p>Usually I use AdventureWorks database to build the real example.</p>
<p>However, your additionally explanation now will remove any further confusion if there is on this subject. </p>
<p>Thanks for taking time &#8211; I am so waiting to meet you soon.</p>
<p>Regards,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob Farley</title>
		<link>http://blog.sqlauthority.com/2011/10/04/sql-server-quick-note-about-join-common-questions-and-simple-answers/#comment-174877</link>
		<dc:creator><![CDATA[Rob Farley]]></dc:creator>
		<pubDate>Tue, 04 Oct 2011 07:48:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/?p=14816#comment-174877</guid>
		<description><![CDATA[Hi Pinal,

In your IN example, the two queries are not logically identical. If you have multiple rows in t2 that match, you will get extra rows appearing in the results of the JOIN option. IN performs a Semi Join here, whereas JOIN will perform an Inner Join. I&#039;m not writing &quot;Inner Join&quot; in capitals because I&#039;m talking about the logical operation, not the keyword.

Hope this helps,

Rob]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>In your IN example, the two queries are not logically identical. If you have multiple rows in t2 that match, you will get extra rows appearing in the results of the JOIN option. IN performs a Semi Join here, whereas JOIN will perform an Inner Join. I&#8217;m not writing &#8220;Inner Join&#8221; in capitals because I&#8217;m talking about the logical operation, not the keyword.</p>
<p>Hope this helps,</p>
<p>Rob</p>
]]></content:encoded>
	</item>
</channel>
</rss>
