Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
Applies to:
Databricks SQL
Databricks Runtime
Returns an array of the elements in the intersection of array1 and array2.
Syntax
array_intersect(array1, array2)
Arguments
array1: An ARRAY of any type with comparable elements.array2: n ARRAY of elements sharing a least common type with the elements ofarray1.
Returns
An ARRAY of matching type to array1 with no duplicates and elements contained in both array1 and array2.
Examples
> SELECT array_intersect(array(1, 2, 3), array(1, 3, 3, 5));
[1,3]