SQL Joins
SQL Joins
Types of JOIN
Following are the types of JOIN that we can use in
SQL:
• Inner
• Outer
• Left
• Right
SQL
Mysql query –
Select * from a left outer join b on
(a.name=b.name) union Select * from
a right outer join b on
(a.name=b.name) ;