|
* Inner Join
:
Returns all rows from both tables where there is a match.
|
* Left Join
:
Returns all the rows from the first Table, even if there are no matches in the second Table.
|
* Right Join
:
Returns all the rows from the second Table, even if there are no matches in the first Table.
|
* Full Join
:
Returns all the rows from both Tables
|
* Self Join
:
A table can be joined to itself in a Self Join
|
* Cross Join
:
Produces the Cartesian product of the tables involved in the join.
|