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