如何把sqlserver中的列转换成行,行转换成列,显示。

如何把sqlserver中的列转换成行,行转换成列,显示。,第1张

概述        上次做活的时候碰到客户提的一个需求,就是要把数据库中得列转化为行来显示。呵呵,自己网上也找了一些解决方案,加上自己的一个解决方案,做一个总结,以免下次再碰到这种情况,也算是一种经验的积累把。        create database arrongouse arrongo-- createTable init Datacreate table studen

        上次做活的时候碰到客户提的一个需求,就是要把数据库中得列转化为行来显示。呵呵,自己网上也找了一些解决方案,加上自己的一个解决方案,做一个总结,以免下次再碰到这种情况,也算是一种经验的积累把。

      

create database arrongouse arrongo-- createtable init Datacreate table students (  name varchar(25),class varchar(25),grade int)insert into students values ('张三','语文',20)insert into students values ('张三','数学',90)insert into students values ('张三','英语',50)insert into students values ('李四',81)insert into students values ('李四',60)insert into students values ('李四',90)-- solution1select * from students pivot( max(grade) FOR [class] IN ([语文],[数学],[英语])) AS pvt-- solution2 相当于自连接select A.name,A.grade as 语文,B.grade as 数学,C.grade as 英语from students A,students B,students Cwhere A.name=B.name and B.name=C.nameand A.class='语文' and B.class='数学'and C.class='英语'-- solution3 select name,max(case when s.class='语文' then s.grade end) as 语文,max(case when s.class='数学' then s.grade end) as 数学,max(case when s.class='英语' then s.grade end) as 英语 from students s group by name--在有ID 的情况下create table students2 (  ID int primary key IDentity(1,1),name varchar(25),grade int)insert into students2 values ('张三',20)insert into students2 values ('张三',90)insert into students2 values ('张三',50)insert into students2 values ('李四',81)insert into students2 values ('李四',60)insert into students2 values ('李四',90)-- 原先的solution1(有问题)select * from students2 pivot( max(grade) FOR [class] IN ([语文],[英语])) AS pvt-- 原先的solution2 (ok)select A.name,students2 B,students2 Cwhere A.name=B.name and B.name=C.nameand A.class='语文' and B.class='数学'and C.class='英语'-- 原先的solution3 (ok)select name,max(case when s.class='英语' then s.grade end) as 英语 from students s group by name--unpivot 函数使用create table test1(ID int,name varchar(20),Q1 int,Q2 int,Q3 int,Q4 int)insert into test1 values(1,'a',1000,2000,4000,5000)insert into test1 values(2,'b',3000,3500,4200,5500) --实现的sqlselect * from test1select ID,[name],[jIDu],[xiaoshou] from test1unpivot( xiaoshou for jIDu in ([q1],[q2],[q3],[q4]))as f--- 以下的sql 可以替换上面的sqlselect ID,jIDu='Q1',xiaoshou=(select Q1 from test1 where ID=a.ID)from test1 as aunionselect ID,jIDu='Q2',xiaoshou=(select Q2 from test1 where ID=a.ID)from test1 as aunionselect ID,jIDu='Q3',xiaoshou=(select Q3 from test1 where ID=a.ID)from test1 as aunionselect ID,jIDu='Q4',xiaoshou=(select Q4 from test1 where ID=a.ID)from test1 as a
总结

以上是内存溢出为你收集整理的如何把sqlserver中的列转换成行,行转换成列,显示。全部内容,希望文章能够帮你解决如何把sqlserver中的列转换成行,行转换成列,显示。所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/sjk/1180025.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-02
下一篇 2022-06-02

发表评论

登录后才能评论

评论列表(0条)

保存