Skip to main content
Ctrl+K
PyFlink 1.20+vvr.11.7.dev0 documentation - Home PyFlink 1.20+vvr.11.7.dev0 documentation - Home
  • API Reference
  • Examples
  • API Reference
  • Examples

Section Navigation

  • PyFlink Table
    • TableEnvironment
    • Table
    • Data Types
    • Window
    • Expressions
    • User Defined Functions
    • Descriptors
    • StatementSet
    • Catalog
  • PyFlink DataStream
  • PyFlink DataFrame
  • PyFlink Common
  • API Reference
  • PyFlink Table
  • Table
  • pyflink.table.Table.select

pyflink.table.Table.select#

Table.select(*fields: Expression) → Table[source]#

Performs a selection operation. Similar to a SQL SELECT statement. The field expressions can contain complex expressions.

Example:

>>> from pyflink.table.expressions import col, concat
>>> tab.select(tab.key, concat(tab.value, 'hello'))
>>> tab.select(col('key'), concat(col('value'), 'hello'))
Returns:

The result table.

previous

pyflink.table.Table.right_outer_join

next

pyflink.table.Table.to_pandas

On this page
  • Table.select()

This Page

  • Show Source

Created using Sphinx 7.4.7.

Built with the PyData Sphinx Theme 0.16.1.