oracle行转列

Posted wangsoft

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle行转列相关的知识,希望对你有一定的参考价值。

select

    Student,

    sum(case Course when ‘数学‘ then Score else null end) 数学,

    sum(case Course when ‘物理‘ then Score else null end) 物理,

    sum(case Course when ‘英语‘ then Score else null end) 英语,

    sum(case Course when ‘语文‘ then Score else null end) 语文

from 

    TEST 

group by Student

 

链接:https://www.cnblogs.com/Mr_JinRui/archive/2011/05/27/2060109.html

技术图片

 

以上是关于oracle行转列的主要内容,如果未能解决你的问题,请参考以下文章

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

oracle行转列sql怎么写?

Hive 行转列 & 列转行

oracle行转列sql怎么写?

ORAClE sql如何实现行转列?

【求助】有关oracle 动态行转列