Join
Definition
Returns all records that have matching values in both tables.
Options
-
Inner:
- Def: Returns all records that have matching values in both tables.
-
Left:
- Def: Returns all records from the left table and the matching records from the right table.
-
Right:
- Def: Returns all records from the right table and the matching records from the left table.
-
Full:
- Def: Returns all records when there is a match in left or right table.
-
Cross:
- Def: Returns the Cartesian product of rows from the tables in the join (A * B).
Parameters
Join expression (+add):
-
Column 1:
- Def: Specify the name of the column.
-
Column 2:
- Def: Specify the name of the column.