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