原创 Spark Dataset的join操作

以下是兩個具有相同列名的Dataset按照同名列相等進行join操作,join結果中同名列只會出現一個: val df1 = Seq((1, 2, 3),(1, 1, 1)).toDF("a", "b", "c") val df2