本文简要介绍 python 语言中 pyflink.table.Table.right_outer_join
的用法。
用法:
right_outer_join(right: pyflink.table.table.Table, join_predicate: pyflink.table.expression.Expression[bool][bool]) → pyflink.table.table.Table
连接两个
Table
。类似于 SQL 右外连接。两个连接操作的字段不得重叠,必要时使用alias()
重命名字段。注意:
两个表必须绑定到相同的
TableEnvironment
,并且其TableConfig
必须启用空检查(默认)。例子:
>>> left.right_outer_join(right, left.a == right.b)
参数:
right- 右表。
join_predicate- 连接谓词表达式字符串。
返回:
结果表。
相关用法
- Python pyflink Table.rename_columns用法及代码示例
- Python pyflink Table.intersect_all用法及代码示例
- Python pyflink Table.fetch用法及代码示例
- Python pyflink Table.distinct用法及代码示例
- Python pyflink Table.where用法及代码示例
- Python pyflink Table.drop_columns用法及代码示例
- Python pyflink Table.execute用法及代码示例
- Python pyflink Table.minus_all用法及代码示例
- Python pyflink Table.over_window用法及代码示例
- Python pyflink Table.union_all用法及代码示例
- Python pyflink Table.left_outer_join_lateral用法及代码示例
- Python pyflink Table.add_or_replace_columns用法及代码示例
- Python pyflink Table.join用法及代码示例
- Python pyflink Table.minus用法及代码示例
- Python pyflink Table.execute_insert用法及代码示例
- Python pyflink Table.limit用法及代码示例
- Python pyflink Table.offset用法及代码示例
- Python pyflink Table.group_by用法及代码示例
- Python pyflink Table.add_columns用法及代码示例
- Python pyflink Table.to_pandas用法及代码示例
- Python pyflink Table.union用法及代码示例
- Python pyflink Table.select用法及代码示例
- Python pyflink Table.window用法及代码示例
- Python pyflink Table.full_outer_join用法及代码示例
- Python pyflink Table.map用法及代码示例
注:本文由纯净天空筛选整理自apache.org大神的英文原创作品 pyflink.table.Table.right_outer_join。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。