Reference material for ARRAY_ENUMERATE function
array[i] = array[i - 1] + 1
.
NULLs
contained in the parameter array are treated like any other value, and result in a non-null element in the returned array.
If the parameter array is NULL
, then the function also returns NULL
.
Parameter | Description | Supported input types |
---|---|---|
<array> | The array to be enumerated. The length of the returned array is the same as the length of the parameter array. | Any array type. |
ARRAY(INT)