JOINs
Last updated
Was this helpful?
Last updated
Was this helpful?
By using joins, you can retrieve data from two or more tables based on logical relationships between the tables.
Joins can be applied not only to tables, but also to other table-like objects. You can join:
A table.
A (materialized or non-materialized).
A .
An expression that evaluates to the equivalent of a table (containing one or more columns and zero or more rows). For example:
The result set returned by a .
The result set returned by a subquery that returns a table.
FULL OUTER JOIN
with WHERE A.Key IS NULL OR B.Key IS NULL