DataFrame.Intersect(DataFrame) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
仅返回此DataFrame行和另一行DataFrame中的新DataFrame行。
public Microsoft.Spark.Sql.DataFrame Intersect(Microsoft.Spark.Sql.DataFrame other);
member this.Intersect : Microsoft.Spark.Sql.DataFrame -> Microsoft.Spark.Sql.DataFrame
Public Function Intersect (other As DataFrame) As DataFrame
参数
- other
- DataFrame
其他数据帧
返回
DataFrame 对象
注解
这相当于 INTERSECT 在 SQL 中。