I'm trying to combine values of multiple columns into a single column. Suppose I have a csv with the following data
col1,col2,col3,col4
1,2,3,4
6,2,4,6
2,5,6,2
I want it to become a single column with the values concatenated separated by a blank space
col1
1 2 3 4
6 2 4 6
2 5 6 2
The number of columns is 2000+ so having the columns statically concatenated will not do.