Function append() adds an element to the end of a list and returns this list.
Arguments:
Returns:
Exalmple: Direct calculate
UQLuncollect [["a","b"],["c","d"]] as a uncollect ["X","Y"] as b return append(a, b)
Result| append(a, b) | |---------------| | ["a","b","X"] | | ["c","d","Y"] |
Exalmple: Multiply and calculate
UQLuncollect [["a","b"],["c","d"]] as a uncollect ["X","Y"] as b with append(a, b) as c return c
Result| c | |---------------| | ["a","b","X"] | | ["a","b","Y"] | | ["c","d","X"] | | ["c","d","Y"] |