MySQL - 将列拆分为多列

时间:2016-01-13 08:19:13

标签: mysql multiple-columns

如何将列拆分为多个列,以便每列包含不同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     




0 个答案:

没有答案