作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的表格的列如下:
Sr.no Subject No of class attended
-------------------------------------
1 English 3
2 Maths 4
3 SocialScience 5
我想要这种格式的表格
English Maths SocialScience
---------------------------------
3 4 5
我尝试过这个:
Select case when subject ='Maths' then COUNT(No_of_Candidates) else null end as Maths
但这样我得到的数据是这样的:
English Maths SocialScience
---------------------------------
3
4
5
请帮我解决这个问题..
最佳答案
正如您所说,您不希望这样的输出:
English Maths SocialScience
---------------------------------
3
4
5
您需要像这样使用子查询:
SELECT English,Maths,SocialScience
FROM (
SELECT Subject,No_of_class_attended
FROM mytable) up
PIVOT
(Sum([No_of_class_attended])
for Subject in ([English],[Maths],[SocialScience])) p
输出:
English Maths SocialScience
---------------------------------
3 4 5
关于sql - 如何在sql server中水平旋转表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12176230/
我是一名优秀的程序员,十分优秀!