SQL JOINS
SQL JOINS
JOINS
Prepared By:
Ms. Barkha Namdev
SQL JOIN
SQL Join is used to fetch data from two or more
tables.
2 adam 2 MUMBAI
3 alex 3 CHENNAI
Natural Join
Natural Join is a type of Inner join which is based
on column having same name and same datatype
present in both the tables to be joined.
The syntax for Natural Join is,
Outer Join.
Left Outer Join
1 abhi 1 DELHI
2 adam 2 MUMBAI
3 alex 3 CHENNAI
ID NAME ID Address
1 abhi 1 DELHI
2 adam 2 MUMBAI
3 alex 3 CHENNAI