DataFrame.Except(DataFrame) 方法

定义

返回包含此 DataFrame 中的新行,但不返回另一个 中的新DataFrameDataFrame行。

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

参数

other
DataFrame

其他数据帧

返回

DataFrame 对象

注解

这等效于 EXCEPT DISTINCT SQL 中的 。

适用于