不管我们在平时的学习或工作中,难免会遇到“行转列”与“列转行“”的数据操作,我们先看一下今天我们需要实现的例子
1、我们的数据是这样的
2、我们需要输出的数据是这样的
可以先自己思考一下如何实现
实现的方法可参考下面的SQL
1、先创建表和插入数据
drop table if exists test_table
create table test_table(NUA int,[revenue] int,[user] int,[volume] int,[month] varchar(10))
insert into test_table([NUA],[revenue],[user],[volume],[month]) values (144, 1710, 664, 554, '2020-02')
insert into test_table([NUA],[revenue],[user],[volume],[month]) values (426, 1293, 4680, 4247, '2019-03')
insert into test_table([NUA],[revenue],[user],[volume],[month]) values (505, 1371, 5049, 4317, '2020-03')
2、看一下表里的数据
select * from test_table
3、将 数据 列转行
方法一:
select month, [index],[value] from test_table unpivot([value] for [index] in([revenue], [volume], [user], [NUA]))index_values
方法二:
select [month],[index]='NUA', [value]=[NUA] from test_table
union all
select [month],[index]='revenue', [value]=[revenue] from test_table
union all
select [month],[index]='user', [value]=[user] from test_table
union all
select [month],[index]='volume', [value]=[volume] from test_table
注:两种方法查询的结果是一样的,只是排序不一样,这个结果是中间结果,我就没有处理了,望见谅,谢谢。
4、将列转行的结果再进行行转列
方法一:
select *
from (select [index],[value],[month] from test_table
unpivot([value] for [index] in([revenue], [volume], [user], [NUA]))a)T1
pivot(max([value])for [month] in ([2020-02], [2020-03], [2019-03]))b
方法二:
select [index] ,
max(case when [month]='2020-02' then [value] else null end)[2020-02],
max(case when [month]='2020-03' then [value] else null end)[2020-03],
max(case when [month]='2019-03' then [value] else null end)[2019-03]
from (select [month],[index]='NUA', [value]=[NUA] from test_table
union all
select [month],[index]='revenue', [value]=[revenue] from test_table
union all
select [month],[index]='user', [value]=[user] from test_table
union all
select [month],[index]='volume', [value]=[volume] from test_table
)T1
group by [index]
5、 最后的结果为:
注:两种方法最后的结果都是一样的
希望对你以后的学习或者工作有帮助!!!
若想了解SQL Server 的列转行实现小示例,可点击 此处
若想了解SQL Server 的行转列实现小示例,可点击 此处