select Statement
Syntax |
NONE
| |
---|---|---|
Semantics | Selects array items by evaluating a boolean where-expression for each array element and optionally grouping it. In all expressions the array element is identified by the keyword element. The optional keyword Please note that | |
Substitutables | anArray | Can be any variable or object attribute having the type Array. |
<where-expression> | This is can be any expression evaluating to Boolean and containing the keyword element . The where-clause (where <where-expression> ) is mandatory for all select statements except for select distinct . | |
<group-by-expression> | This is can be any expression containing the keyword element and returning any simple type except Blob. The resulting (grouped) array is an array of type Group, where values contains the array elements that belong into that group. The group-by-clause ( | |
<distinct-expression> | This is can be any expression containing the keyword element returning any simple type except Blob. The distinct-clause (distinct <distinct-expression> ) must not be used in conjunction with the group-by clause. | |
Examples | The examples below use an instance of InputContainer as input:
NONE
Please note that | |
The examples below use an array of Company objects as input:
CODE
|
Example File (Builder project E2E Action Language/Array):
<your example path>\E2E Action Language\Array\uml\arrayFilter.xml |