Hi,
An array is an indexed collection of elements of a single data type. In the following section we explore the varying ways to define and use arrays in SQLScript.
Syntax
ARRAY(<value_expression> [{, <value_expression>}...])
Syntax Elements
<value_expression> ::= <string_literal> | <number>
The array can contain strings or numbers.
Description
The ARRAY function returns an array whose elements are specified in the list of value expressions.
Regards
NK