求助各位大神这种SQL语句应该这么写

2019-01-02 21:24发布

求教一下这种sql应该怎么写呀,想了好久没想出来

标签: sql server
3条回答
beautiful°
2楼-- · 2019-01-02 22:10

select student,
sum(case course when '语文' then score end) as '语文',
sum(case course when '数学' then score end) as '数学',
sum(case course when '英语' then score end) as '英语'
from 分数表
group by 学生表

查看更多
淡お忘
3楼-- · 2019-01-02 22:10

学习了 ,SQL 行转列

查看更多
男人必须洒脱
4楼-- · 2019-01-02 22:27

https://www.cnblogs.com/WangShuaishuai/p/9407917.html

查看更多
登录 后发表回答