本文简要介绍 python 语言中 pyflink.table.Table.add_or_replace_columns
的用法。
用法:
add_or_replace_columns(*fields: pyflink.table.expression.Expression) → pyflink.table.table.Table
添加其他列。类似于 SQL SELECT 语句。字段表达式可以包含复杂表达式,但不能包含聚合。如果添加列名称与现有列名称相同,则现有字段将被替换。此外,如果添加的字段具有重复的字段名称,则使用最后一个。
例子:
>>> from pyflink.table import expressions as expr >>> tab.add_or_replace_columns((tab.a + 1).alias('a1'), ... expr.concat(tab.b, 'sunny').alias('b1'))
参数:
fields- 列列表字符串。
返回:
结果表。
相关用法
- Python pyflink Table.add_columns用法及代码示例
- Python pyflink Table.alias用法及代码示例
- Python pyflink Table.aggregate用法及代码示例
- Python pyflink Table.intersect_all用法及代码示例
- Python pyflink Table.fetch用法及代码示例
- Python pyflink Table.right_outer_join用法及代码示例
- 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.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.rename_columns用法及代码示例
- Python pyflink Table.to_pandas用法及代码示例
- Python pyflink Table.union用法及代码示例
- Python pyflink Table.select用法及代码示例
- Python pyflink Table.window用法及代码示例
注:本文由纯净天空筛选整理自apache.org大神的英文原创作品 pyflink.table.Table.add_or_replace_columns。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。