Assume the following two Dataframes in pyspark with equal number of rows:
df1:
|_ Column1a
|_ Column1b
df2:
|_ Column2a
|_ Column2b
I wish to create a a new DataFrame "df" which has Column1a and Column 2a only. What could be the best possible solution for it?