ARRAY_SLICE¶
ARRAY_SLICE(arr, from, to)
Returns an array constructed from a specified subset of elements of the input array arr[from:to]
.
Returns NULL
if one of arr
, from
and to
is NULL
.
ARRAY_SLICE(arr, from, to)
Returns an array constructed from a specified subset of elements of the input array arr[from:to]
.
Returns NULL
if one of arr
, from
and to
is NULL
.