Joining SQL
Joining SQL
Now we want to
fetch details of
employee along
with its
corresponding
matching
department. Like
for ‘alam’ deptno
is 10 so from dept
table it should
show deptno 10
details and so on
Equi-join
Common
Column
appears
twice in
output
From the above query, we can observe that while doing equi-join we have to give
equality condition on common column of both table so that it picks related
records
Equi-join
We can also give Table Alias i.e. ni ck name for table name an d further we can use
this name any where in query in place of table name. This is helpful when table
name is of big length and we can shorten the query
Natural Join
• The JOIN in which only one of the identical
columns exists in called Natural Join. It is
similar to Equi-join except that duplicate
columns are eliminated in Natural join that
would otherwise appear in Equi-Join.
• In natural join we specify the names of column
to fetch in place of (*) which is responsible of
appearing common column twice in output.
*, like in equi-join but we
are giving list of columns to
Natural Join
fetch
Natural Join