You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

The select operator filters the incoming data stream according to the given predicate.

Parameter

  • predicate: The predicate to evaluate over each incoming tuple

Example

PQL
Select Operator
output = SELECT({ 
                 predicate='price > 100' 
                }, input)
CQL
Select Operator
SELECT * FROM input WHERE price > 100
  • No labels