I have a pyspark data frame that every column appends the table name ie: Table.col1, Table.col2...
I would like to replace 'Table.' with '' (nothing) in every column in my dataframe.
How do I do this? Everything I have found deals with doing this to the values in the columns and not the column names themselves.