Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

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
Code Block
themeEclipse
languagejavascript
titleSelect Operator
linenumberstrue
output = SELECT({ 
                 predicate='price > 100' 
                }, input)
CQL
Code Block
themeEclipse
languagesql
titleSelect Operator
linenumberstrue
SELECT * FROM input WHERE price > 100