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.

