Functions.ArrayIntersect(Column, Column) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns an array of the elements in the intersection of the given two arrays, without duplicates.
[Microsoft.Spark.Since("2.4.0")]
public static Microsoft.Spark.Sql.Column ArrayIntersect(Microsoft.Spark.Sql.Column col1, Microsoft.Spark.Sql.Column col2);
[<Microsoft.Spark.Since("2.4.0")>]
static member ArrayIntersect : Microsoft.Spark.Sql.Column * Microsoft.Spark.Sql.Column -> Microsoft.Spark.Sql.Column
Public Shared Function ArrayIntersect (col1 As Column, col2 As Column) As Column
Parameters
- col1
- Column
Left side column to apply
- col2
- Column
Right side column to apply
Returns
Column object
- Attributes