DataFrame a
= contains column x,y,z,kDataFrame b
= contains column x,y,aa.join(b,<condition to use in java to use x,y >) ???
I tried using
a.join(b,a.col("x").equalTo(b.col("x")) && a.col("y").equalTo(b.col("y"),"inner")
But Java is throwing error saying &&
is not allowed.
Can someone help ? thanks