SQL 行转列
Posted 飞鸟2018
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL 行转列相关的知识,希望对你有一定的参考价值。
1 select * from Score
1 select student, 2 sum(case course when \'语文\' then score end) as \'语文\', 3 sum(case course when \'数学\' then score end) as \'数学\', 4 sum(case course when \'英语\' then score end) as \'英语\' 5 from Score 6 group by student
以上是关于SQL 行转列的主要内容,如果未能解决你的问题,请参考以下文章