I have a CSV like this:
company_name | Address | person1 | person2 | person3 | ... | person34 |
____________________________________________________________________________________________
stackoverflow| USA | Brian Guan | | | ... | |
google | Cali, US| John Smith | James Smith | Ron Swanson | ... | 34th member |
In other words, each row can have more columns depending on if they have more team members. What I want to do is some sort of union all so that all the team members are in one column, but each row still has the necessary company name and address information. In other words, I want to get it like this"
company_name | Address | person |
_______________________________________
stackoverflow| USA | Brian Guan |
google | Cali, US| John Smith |
google | Cali, US| James Smith |
google | Cali, US| Ron Swanson |
.
.
.
google | Cali, US| 34th member |
I know the largest team has 34 people, but am having trouble wrapping my head around this. Any help would be appreciated!