ARRAY_CAT
Combines one or more arrays that are passed as arguments.
Syntax
Parameters
|| operator
To enable array concatenation, one parameter to the
|| operator must be of type ARRAY, while the other parameter can be a string whose value can be converted to the underlying type of the array parameter, or it can be an array of the same type.
If one parameter to the || operator is NULL, the result will be the non-null parameter; if both parameters are NULL, the result will be NULL.
The concatenation operator || can also be used for string concatenation.
Return Type
ARRAY of the same type as the input arrays
Examples
In the following example, two arrays are combined to show all of the levels in a particular game:Rows: 1Execution time: 9.26ms
Rows: 1Execution time: 7.99ms
Rows: 1Execution time: 6.14ms