%md #### array_intersect(array<T>, array<T>): array<T> Returns an array of the elements in the intersection of the given two arrays, without duplicates.
array_intersect(array<T>, array<T>): array<T>
Returns an array of the elements in the intersection of the given two arrays, without duplicates.
Last refresh: Never
%md #### array_union(array<T>, array<T>): array<T> Returns an array of the elements in the union of the given two arrays, without duplicates.
array_union(array<T>, array<T>): array<T>
Returns an array of the elements in the union of the given two arrays, without duplicates.
Last refresh: Never
%md #### array_join(array<String>, String[, String]): String Concatenates the elements of the given array using the delimiter and an optional string to replace nulls. If no value is set for null replacement, any null value is filtered.
array_join(array<String>, String[, String]): String
Concatenates the elements of the given array using the delimiter and an optional string to replace nulls. If no value is set for null replacement, any null value is filtered.
Last refresh: Never
%md #### arrays_overlap(array<T>, array<T>): array<T> Returns true if array1 contains at least a non-null element present also in array2. If the arrays have no common element and they are both non-empty and either of them contains a null element null is returned, false otherwise.
arrays_overlap(array<T>, array<T>): array<T>
Returns true if array1 contains at least a non-null element present also in array2. If the arrays have no common element and they are both non-empty and either of them contains a null element null is returned, false otherwise.
Last refresh: Never
%md #### array_sort(array<T>): array<T> Sorts the input array in ascending order. The elements of the input array must be orderable. Null elements will be placed at the end of the returned array.
array_sort(array<T>): array<T>
Sorts the input array in ascending order. The elements of the input array must be orderable. Null elements will be placed at the end of the returned array.
Last refresh: Never
SELECT array_sort(array('b', 'd', null, 'c', 'a'));
Showing all 1 rows.
Last refresh: Never
%md #### concat(String, ...): String / concat(array<T>, ...): array<T> Returns the concatenation of col1, col2, ..., colN. This function works with strings, binary and compatible array columns.
concat(String, ...): String / concat(array<T>, ...): array<T>
Returns the concatenation of col1, col2, ..., colN.
This function works with strings, binary and compatible array columns.
Last refresh: Never
%md #### sequence(T, T[, T]): array<T> Generates an array of elements from start to stop (inclusive), incrementing by step. The type of the returned elements is the same as the type of argument expressions.
sequence(T, T[, T]): array<T>
Generates an array of elements from start to stop (inclusive), incrementing by step. The type of the returned elements is the same as the type of argument expressions.
Last refresh: Never
Apache Spark Built-in and Higher-Order Functions Examples
Last refresh: Never