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 行转列的主要内容,如果未能解决你的问题,请参考以下文章

SQL Server 动态行转列(参数化表名分组列行转列字段字段值)

ORAClE sql如何实现行转列?

oracle行转列sql怎么写?

sql语句行转列 怎么转啊

oracle行转列sql怎么写?

SQLSERVER有张表,需要每晚自动实现行转列。