Array functions
This page goes over the array functions in Upsolver.
Concatenates all values into a single string, separated by the separator.
ARRAY_JOIN(SEPARATOR, VALUES)
Return the maximum value in an array.
Return the minimum value in an array.
Sums all the values in the array.
Returns an error message indicating that CONCAT has been deprecated.
Returns the amount of items in a given array.
COUNT_VALUES_IF
Returns the amount of true values in a given array.
DISTINCT_VALUES
Get all the distinct elements in the array.
Gets the element at the given index in the array.
Index - The index of the item to return
Gets the first element in the array.
Gets the last element in the array.
Return the minimum value.
This function returns the concatenation of the arguments.
It provides the same functionality as the SQL-standard concatenation operator (||).
PRESTO_CONCAT(STRING1, STRING2, ..., STRINGN)
STRING# An expression to concatenate.
The concatenation of the arguments.