Ctrl+K
Logo image Logo image

Site Navigation

  • API Reference
  • Examples

Site Navigation

  • API Reference
  • Examples

Section Navigation

  • PyFlink Table
    • TableEnvironment
    • Table
    • Data Types
    • Window
    • Expressions
    • User Defined Functions
    • Descriptors
    • StatementSet
    • Catalog
  • PyFlink DataStream
  • PyFlink Common

pyflink.table.Table.select#

Table.select(*fields: Union[str, pyflink.table.expression.Expression]) → pyflink.table.table.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

Show Source

Created using Sphinx 4.5.0.