JSON_ARRAY_INTERSECTION (Lakehouse v1)
Returns the common elements between two JSON arrays.
SQL Syntax
Section titled “SQL Syntax”JSON_ARRAY_INTERSECTION(<json_array1>, <json_array2>)Return Type
Section titled “Return Type”JSON array.
SQL Examples
Section titled “SQL Examples”-- Find the intersection of two JSON arraysSELECT json_array_intersection('["Electronics", "Books", "Toys"]'::JSON, '["Books", "Fashion", "Electronics"]'::JSON);
-[ RECORD 1 ]-----------------------------------json_array_intersection('["Electronics", "Books", "Toys"]'::VARIANT, '["Books", "Fashion", "Electronics"]'::VARIANT): ["Electronics","Books"]
-- Find the intersection of the result from the first query with a third JSON array using an iterative approachSELECT json_array_intersection( json_array_intersection('["Electronics", "Books", "Toys"]'::JSON, '["Books", "Fashion", "Electronics"]'::JSON), '["Electronics", "Books", "Clothing"]'::JSON);
-[ RECORD 1 ]-----------------------------------json_array_intersection(json_array_intersection('["Electronics", "Books", "Toys"]'::VARIANT, '["Books", "Fashion", "Electronics"]'::VARIANT), '["Electronics", "Books", "Clothing"]'::VARIANT): ["Electronics","Books"]