Filter
Overview
FILTER
retains rows that satisfy a specified boolean expression (condition). Rows for which the condition is FALSE will be dropped.
Example | Template |
---|---|
FILTER Age > 25 | FILTER <myUA1> <condition> |
This transformation retains the same schema in the output table as in the input.
Note
Please notice that this
FILTER
is used at the row level, as opposed to thefilter()
described on the Map, Filter, and Reduce page, which operates on elements of a field.
Updated over 5 years ago