Array Functions
Last updated
Was this helpful?
Last updated
Was this helpful?
Array functions create, manage, and manipulate arrays (lists of indexed values).
Returns an array containing specified values.
Searches for a specific value in an array. If the value is found, the function returns True
, otherwise it returns False
.
Returns the array without duplicate values.
Returns an array of all unique elements from one specified array not included in another specified array.
Compares two arrays and returns an array of all overlapping elements, without duplicates.
Joins elements of an array into a single text string.
Determines the number of entries in an array, or list.
Returns a portion of an array, defined by the starting index and length.
Returns an arithmetic sequence as an array of integers based on a specified range and increment
The following aggregate functions also create arrays:
Identifies non-null row values in a column or group and aggregates them into a single array.
Identifies distinct non-null row values in a column or group and aggregates them into a single array.