pyflink.table.Table.union_all#
- Table.union_all(right: pyflink.table.table.Table) pyflink.table.table.Table [source]#
Unions two
Table
. Similar to a SQL UNION ALL. The fields of the two union operations must fully overlap.Note
Both tables must be bound to the same
TableEnvironment
.Example:
>>> left.union_all(right)
- Parameters
right – Right table.
- Returns
The result table.