如何将列拆分为多个列,以便每列包含不同ID的值?
select ID, Value from table1
ID Value
==========
1 test1
1 test2
2 test3
2 test4
2 test5
2 test6
我希望结果集根据ID列分成多个部分。每个ID都需要有不同的列
ID Value ID Value
==========================
1 test1 2 test3
1 test2 2 test4
2 test5
2 test6