DataFrame.Except(DataFrame) Method

Definition

Returns a new DataFrame containing rows in this DataFrame but not in another DataFrame.

public Microsoft.Spark.Sql.DataFrame Except (Microsoft.Spark.Sql.DataFrame other);
member this.Except : Microsoft.Spark.Sql.DataFrame -> Microsoft.Spark.Sql.DataFrame
Public Function Except (other As DataFrame) As DataFrame

Parameters

other
DataFrame

Other DataFrame

Returns

DataFrame object

Remarks

This is equivalent to EXCEPT DISTINCT in SQL.

Applies to