I have constructed two dataframes. How can we join multiple Spark dataframes ?
For Example :
PersonDf, ProfileDf with a common col
PersonDf
ProfileDf
inner join with scala
val joinedDataFrame = PersonDf.join(ProfileDf ,"personId") joinedDataFrame.show