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.