本文簡要介紹 python 語言中 pyflink.table.TableEnvironment.sql_query
的用法。
用法:
sql_query(query: str) → pyflink.table.table.Table
評估已注冊表上的 SQL 查詢並以
Table
形式檢索結果。查詢引用的所有表都必須在 TableEnvironment 中注冊。
當
Table
的__str__()
方法被調用時,例如當它嵌入到字符串中時,Table
會自動注冊。因此,SQL 查詢可以直接引用
Table
,如下所示:>>> table = ... # the table is not registered to the table environment >>> table_env.sql_query("SELECT * FROM %s" % table)
參數:
query- sql 查詢字符串。
返回:
結果表。
相關用法
- Python pyflink TableEnvironment.scan用法及代碼示例
- Python pyflink TableEnvironment.set_python_requirements用法及代碼示例
- Python pyflink TableEnvironment.create_temporary_function用法及代碼示例
- Python pyflink TableEnvironment.register_table_source用法及代碼示例
- Python pyflink TableEnvironment.create_java_temporary_function用法及代碼示例
- Python pyflink TableEnvironment.use_catalog用法及代碼示例
- Python pyflink TableEnvironment.create_temporary_system_function用法及代碼示例
- Python pyflink TableEnvironment.create_temporary_table用法及代碼示例
- Python pyflink TableEnvironment.create_java_temporary_system_function用法及代碼示例
- Python pyflink TableEnvironment.register_table_sink用法及代碼示例
- Python pyflink TableEnvironment.register_table用法及代碼示例
- Python pyflink TableEnvironment.register_java_function用法及代碼示例
- Python pyflink TableEnvironment.from_path用法及代碼示例
- Python pyflink TableEnvironment.from_elements用法及代碼示例
- Python pyflink TableEnvironment.use_database用法及代碼示例
- Python pyflink TableEnvironment.create_table用法及代碼示例
- Python pyflink TableEnvironment.from_table_source用法及代碼示例
- Python pyflink TableEnvironment.add_python_archive用法及代碼示例
- Python pyflink TableEnvironment.register_function用法及代碼示例
- Python pyflink TableEnvironment.create_java_function用法及代碼示例
- Python pyflink TableEnvironment.from_pandas用法及代碼示例
- Python pyflink TableEnvironment.from_descriptor用法及代碼示例
- Python pyflink Table.intersect_all用法及代碼示例
- Python pyflink Table.fetch用法及代碼示例
- Python pyflink Table.right_outer_join用法及代碼示例
注:本文由純淨天空篩選整理自apache.org大神的英文原創作品 pyflink.table.TableEnvironment.sql_query。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。