What is result difference between:
- RIGHT JOIN and RIGHT OUTER JOIN
- LEFT JOIN and LEFT OUTER JOIN ?
Can you please explain through the examples ?
What is result difference between:
Can you please explain through the examples ?
There is no diffrence between Right Join and Right outer Join both are same. i.e Left Join and Left Outer Join both are same.
This will give you clear idea :
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=53046
http://itknowledgeexchange.techtarget.com/itanswers/left-join-vs-left-outer-join/
Here's a very nice Visual Explanation of joins generally by our very own Jeff Atwood. A right outer join is the same as a right join, and left join and left outer join are also the same.
What is result difference between:
RIGHT JOIN and RIGHT OUTER JOIN
No difference.
LEFT JOIN and LEFT OUTER JOIN ?
No difference.
Simply put, the OUTER
keyword is optional. You can include it or omit it without affecting the resultset.