语言

DataFrame.IntersectAll(DataFrame) 方法

定义

仅返回一个新DataFrame包含行,同时DataFrameDataFrame保留重复项。

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

参数

other
DataFrame

其他数据帧

返回

DataFrame 对象

属性

注解

这相当于 INTERSECT ALL 在 SQL 中。

适用于