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.where#

Table.where(predicate: Expression[bool]) → Table[source]#

Filters out elements that don’t pass the filter predicate. Similar to a SQL WHERE clause.

Example:

>>> tab.where(col('name') == 'Fred')
Parameters

predicate – Predicate expression string.

Returns

The result table.

previous

pyflink.table.Table.union_all

next

pyflink.table.Table.window

On this page
  • Table.where()
Show Source

Created using Sphinx 5.3.0.