If the two dataframes have columns with the same name, how can you join the two datasets
dataset1.join(dataset2, dataset1.col(“address_id”) === dataset2.col(“address_id”))
What is the default join
inner join
with union, how is the data merge
based on the position of the columns and not the name of the columns
only as long as the data type is the same
How can you union by column name
.unionByName