Functions.ArrayExcept(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 col1
but not in the col2
,
without duplicates. The order of elements in the result is nondeterministic.
[Microsoft.Spark.Since("2.4.0")]
public static Microsoft.Spark.Sql.Column ArrayExcept(Microsoft.Spark.Sql.Column col1, Microsoft.Spark.Sql.Column col2);
[<Microsoft.Spark.Since("2.4.0")>]
static member ArrayExcept : Microsoft.Spark.Sql.Column * Microsoft.Spark.Sql.Column -> Microsoft.Spark.Sql.Column
Public Shared Function ArrayExcept (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