where()
where(filter)
returns every row from the input stream except those that don't pass filter
.
filter
is specified using the standard query syntax.
Returns
The same table as the input, less rows that fail to pass filter
. Note that this can result in zero rows.
Examples
Last updated