Oracle实现行列转换的方法分析

本文介绍了Oracle中进行行列转换的几种方法,包括固定列数的转换、不定列转换以及应对列数不固定的情况。详细讲解了如何使用SQL语句、PL/SQL以及decode函数来实现数据的行列互换,提供了具体的示例和代码片段。
摘要由CSDN通过智能技术生成

参考网址:http://m.jb51.net/article/90982.htm
https://www.bbsmax.com/A/Vx5MOwGzNr/
https://segmentfault.com/q/1010000009622091/a-1020000009656991
http://blog.itpub.net/17203031/viewspace-754807/

1、固定列数的行列转换

1)

如:

student subject grade
student1 语文 80
student1 数学 70
student1 英语 60
student2 语文 90
student2 数学 80
student2 英语 100

转换为:

语文 数学 英语
student1 80 70
student2 90 80

语句如下:

select student,
sum(decode(subject,'语文', grade,null)) "语文",
sum(decode(subject,'数学', grade,null)) "数学",
sum(decode(subject,'英语', grade,null)) "英语"
from table
group by student;

2)

select student, wm_concat(grade) grades from table group by student;

结果

student grades
student1 80 70 60
student2 90 80 100

3)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值