Union
Definition
Returns the row-concatenation of the 2 inputs results.
Options
-
all:
- Def: Returns the row-concatenation of the 2 inputs results, lets the duplicated rows.
-
distinct:
- Def: Returns the row-concatenation of the 2 inputs results, removes the duplicated rows after the operation.
-
byNameAll:
- Def: Returns the row-concatenation of the 2 inputs results, lets the duplicated rows.
-
byNameDistinct:
- Def: Returns the row-concatenation of the 2 inputs results, removes the duplicated rows after the operation.
Additional Comments
-
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.