Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know about joins in SQL Server.

For example. there is two tables Table1, Table2.

There table structure are following.

create table Table1 (id int, Name varchar (10))

create table Table2 (id int, Name varchar (10))

Table1 Data as follows:

    Id     Name     
    -------------
    1      A        
    2      B    

Table2 Data as follows:

    Id     Name     
    -------------
    1      A        
    2      B 
    3      C

If i execute both below mentioned SQL statments. both out puts are same

Select * from Table1 left join Table2 on Table1.id = Table2.id

Select * from Table2 right join Table1 on Table1.id = Table2.id

Please help me for difference between left and right join for above sql statments.

share|improve this question

6 Answers

up vote 10 down vote accepted
Select * from Table1 left join Table2 ...

and

Select * from Table2 right join Table1 ...

are indeed completely interchangeable. Try however Table2 left join Table1 (or its identical pair, Table1 right join Table2) to see a difference. This query should give you more rows, since Table2 contains a row with an id which is not present in Table1.

share|improve this answer

Codeproject has this image which explains the simple basics of SQL joins, taken from: http://www.codeproject.com/KB/database/Visual_SQL_Joins.aspx SQL joins explained

share|improve this answer
5  
This should be the answer instead. +1 for the detailed answer. – Tendou Kishi Jan 16 at 9:27
4  
There ain't much 'detail' in there. Credit should actually go to the codeproject page instead of to me. But I of course don't mind the attention :-) – Daan Timmer Jan 22 at 12:41
perfect answer. Thank you. – hd. Mar 16 at 17:42

Please read this site for more information regarding join.

share|improve this answer

Your two statements are equivalent.

Most people only use LEFT JOIN since it seems more intuitive, and it's universal syntax - I don't think all RDBMS support RIGHT JOIN.

share|improve this answer
"I don't think all RDBMS support RIGHT JOIN" -- sure, not all RDBMSs support SQL. But if you are implying that some SQL products support LEFT but not RIGHT then please indicate which ones. – onedaywhen Jan 18 '11 at 10:56
2  
@onedaywhen For example, SQLite 3 doesn't implement RIGHT and FULL OUTER JOIN : sqlite.org/omitted.html – Mac_Cain13 Dec 13 '12 at 10:19

You seem to be asking, "If I can rewrite a RIGHT OUTER JOIN using LEFT OUTER JOIN syntax then why have a RIGHT OUTER JOIN syntax at all?" I think the answer to this question is, because the designers of the language didn't want to place such a restriction on users (and I think they would have been criticized if they did), which would force users to change the order of tables in the FROM clause in some circumstances when merely changing the join type.

share|improve this answer

select fields
from tableA
[left]
left join tableB [right] on tableA.key = tableB.key

The table in "from" in this exemple "tableA", is in the left side of relation.

tableA <- tableB
[left]------[right]

So if you want to take all rows from the left table (tableA), even if there are no matches in the right table (tableB), you'll use the "left join".
And if you want to take all rows from the right table (tableB), even if there are no matches in the left table (tableA), you will use the "right join".

Thus, the following query is equivalent to that used above.

select fields
from tableB
right join tableA on tableB.key = tableA.key

share|improve this answer
Welcome to Stack Overflow. You should brush up on the formatting system. Also, people will often comment negatively whenever there is a reference to W3Schools, but that is neither here nor there, as long as the referenced information is valid and not against best code practices. – ChristopherW May 13 at 15:10
Thanks for the advice ChristopherW, i'll pay attention in the next time. Best regards. – Moraes May 13 at 16:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.