DataFrame join rename multiple columns in join command

column renaming is only supported if you do outerjoin for two data frames. If you have more than two and want column renaming then either:

  1. rename columns before the operations
  2. do sequential outerjoin of 2 data frames at a time
2 Likes