I know there is an SQL for this:
Sample Table:
ID FirstName LastName
1 Jones Smith
2 Paul Tabunjong
3 John Parks
SQL Result:
ID Name
1 Jones Smith
2 Paul Tabunjong
3 John Parks
Now, is it possible to have reverse of it? something like this:
Sample Table:
ID Name
1 Jones Smith
2 Paul Tabunjong
3 John Parks
SQL Result:
ID FirstName LastName
1 Jones Smith
2 Paul Tabunjong
3 John Parks
Another one: Is it possible to have something like this:
Sample Table:
ID CorporateNames
1 Jones Smith; Anna Tomson; Tonny Parker
2 Paul Tabunjong; Poncho Pilato
3 John Parks; Berto Taborjakol
SQL Result:
ID FirstName LastName
1 Jones Smith
1 Anna Tomson
1 Tonny Parker
2 Paul Tabunjong
2 Poncho Pilato
3 John Parks
3 Berto Taborjakol