Except
Definition
Returns A - B Table, where A is the left input and B the right one.
Options
-
all:
- Def: Returns A - B Table, where A is the left input and B the right one, lets the duplicated rows.
-
distinct:
- Def: Returns A - B Table, where A is the left input and B the right one, removes the duplicated rows after the operation.
-
byNameAll:
- Def: Returns A - B Table, where A is the left input and B the right one, lets the duplicated rows.
-
byNameDistinct:
- Def: Returns A - B Table, where A is the left input and B the right one, 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.