In SQL Server 2005, I have a table say tbl_Info. There I have one column say Info.
The values are as under
Name1 Age1 Sex1 Name2 Age2 Sex2 ..... ..... .....And the row values goes on like this. My question is how to make row col transposition. The desired output will be
Name Age Sex Name1 Age1 Sex1 Name2 Age2 Sex2 ..... .... ........ ..... .... ........
You can use a table variable or temp table.
And please don't give the solution by using assemblies. Because I already did that by using assemblies but I want a solution which I can even use in SQL Server 2000.