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

问题描述

我正在关注以下输出....

meterno       LimitValue
1234123412341234

但我需要以下格式.

meterno   col1   col2    col3    col4
. >

thnx

I am getting following output....

meterno        LimitValue
1234               .23
1234               .24
1234               .13
1234               .17


but I need in following format.

meterno   col1   col2   col3   col4
1234         .23   .24   .13      .17


thnx

推荐答案


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

08-29 02:10