DataFrame.ExceptAll(DataFrame) Method

Definition

Returns a new DataFrame containing rows in this DataFrame but not in another DataFrame while preserving the duplicates.

[Microsoft.Spark.Since("2.4.0")]
public Microsoft.Spark.Sql.DataFrame ExceptAll (Microsoft.Spark.Sql.DataFrame other);
[<Microsoft.Spark.Since("2.4.0")>]
member this.ExceptAll : Microsoft.Spark.Sql.DataFrame -> Microsoft.Spark.Sql.DataFrame
Public Function ExceptAll (other As DataFrame) As DataFrame

Parameters

other
DataFrame

Other DataFrame

Returns

DataFrame object

Attributes

Remarks

This is equivalent to EXCEPT ALL in SQL.

Applies to