JOIN clauses
Supported
JOIN
types include: INNER
, LEFT
, and CROSS
. Unsupported types include: RIGHT
, FULL
, NATURAL
, and UNION
.
TIP:
The database management system (DBMS) on which the query is performed may involve querying limitations.
Supported functionality
Expected behavior | Query to achieve the expected behavior |
|---|---|
Combine rows from two tables where DepartmentID matches. |
|
Include all rows from the left table and matching rows from the right table. |
|
Combine every row from the first table with every row from the second table. |
|
Unsupported functionality
- RIGHT JOIN
- FULL JOIN
- NATURAL JOIN
- UNION JOIN
Provide Feedback