array_slice(array values, int offset [, int length]) – Slices the given array by the given
array_max(array) – Returns the maximum value in the array. NULL elements are skipped. Platforms: WhereOS,
array_min(array) – Returns the minimum value in the array. NULL elements are skipped. Platforms: WhereOS,
array_intersect(array1, array2) – Returns an array of the elements in the intersection of array1 andarray2,
array_join(array, delimiter[, nullReplacement]) – Concatenates the elements of the given array using the delimiter and
array_distinct(array) – Removes duplicate values from the array. Platforms: WhereOS, Spark, Hive Class: org.apache.spark.sql.catalyst.expressions.ArrayDistinct More