|
The Select node selects or discards a subset of records from the data stream based on a
specific condition. For example, you might select the records that pertain to a particular sales
region.
|
Example
node = stream.create("select", "My node")
node.setPropertyValue("mode", "Include")
node.setPropertyValue("condition", "Age < 18")
Table 1. selectnode properties
selectnode properties |
Data type |
Property description |
mode
|
Include
Discard
|
Specifies whether to include or discard selected records. |
condition
|
string
|
Condition for including or discarding records. |