本文介绍了将一列值拆分为多列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

flano   PresentAmps
3   9
5   6
5   6
1   27
3   5
3   14





i希望像

1 3 5

27 9 6

5 6

5

14

基于第一列值,我希望将这些值拆分为第二列值作为标题,并将其作为标题'的数据。我可以在sql server中获取它。



i want the out put like
1 3 5
27 9 6
5 6
5
14
based on the first column values i want split that values as headers fallowed by second column values as header''s data.how can i get it in sql server.

推荐答案


这篇关于将一列值拆分为多列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-09 13:07