Note
Kailangan ng pahintulot para ma-access ang page na ito. Maaari mong subukang mag-sign in o magpalit ng mga direktoryo.
Ang pag-access sa pahinang ito ay nangangailangan ng pahintulot. Maaari mong subukang baguhin ang mga direktoryo.
Applies to:
Databricks SQL
Databricks Runtime
Returns true if the intersection of array1 and array2 is not empty.
Syntax
arrays_overlap (array1, array2)
Arguments
array1: An ARRAY.array2: An ARRAY sharing a least common type witharray1.
Returns
In Databricks SQL, the result is the least common type of array1 and array2.
In Databricks Runtime, the result is BOOLEAN true if there is overlap.
If the arrays have no common non-null element, they are both non-empty, and either of them contains a null element, NULL, false otherwise.
Examples
> SELECT arrays_overlap(array(1, 2, 3), array(3, 4, 5));
true
> SELECT arrays_overlap(array(1, 2, NULL, 3), array(NULL, 4, 5));
NULL