All kinds of SQL Queries
Type 1: INNER JOIN - only where both tables match
1.) INNER JOIN aka JOIN
|
|
Type 2: OUTER JOINS where either one or both tables match
1.) LEFT OUTER JOIN aka LEFT JOIN
|
|
2.) RIGHT OUTER JOIN aka RIGHT JOIN
|
|
3.) FULL OUTER JOIN aka FULL JOIN
(supported depending on what database program)
|
|
Type 3: CROSS JOIN - Cartesian product(all possible combos of each table)
(supported depending on what database program)
|
|