Intersect
Definition
Returns all records which are in both tables.
Options
-
all:
- Def: Returns all records which are in both tables, lets the duplicated rows.
-
distinct:
- Def: Returns all records which are in both tables, removes the duplicated rows after the operation.
-
byNameAll:
- Def: Returns all records which are in both tables, lets the duplicated rows.
-
byNameDistinct:
- Def: Returns all records which are in both tables, removes the duplicated rows after the operation.
Additional Comments
The 2 tables need to have the same format (same columnName in the same order).
-
all:
- The 2 tables need to have the same format (same columnName in the same order).
-
distinct:
- The 2 tables need to have the same format (same columnName in the same order).
-
byNameAll:
- Column don't have to be ordered.
-
byNameDistinct:
- Column don't have to be ordered.