求按月查询统计的sql,oracle

plsqloracle现有表结构如下学生编号,年月,成绩,性别(字典表-编号,名称),0012009011001001200902981需要统计的结果显示结果学生编号性别... plsql
oracle

现有表结构如下

学生编号,年月,成绩,性别(字典表-编号,名称),
001 200901 100 1
001 200902 98 1
需要统计的结果

显示结果
学生编号 性别 1月 2月,。。。。12月
001 男 100 98 。。。。。

数据量比较大希望sql能考虑到性能 如果有详细解释可加分

求按月统计的sql,oracle
年月不是标准的时间
如 200910.。。。
展开
 我来答
lsk110
2009-12-09 · TA获得超过562个赞
知道大有可为答主
回答量:541
采纳率:0%
帮助的人:1014万
展开全部
Select 学生编号,性别,case when DatePart('m',年月)=1 then 成绩 else 0 end,case when DatePart('m',年月)=2 then 成绩 else 0 end,case when DatePart('m',年月)=3 then 成绩 else 0 end,case when DatePart('m',年月)=4 then 成绩 else 0 end,case when DatePart('m',年月)=5 then 成绩 else 0 end,case when DatePart('m',年月)=6 then 成绩 else 0 end,case when DatePart('m',年月)=7 then 成绩 else 0 end,case when DatePart('m',年月)=8 then 成绩 else 0 end,case when DatePart('m',年月)=9 then 成绩 else 0 end,case when DatePart('m',年月)=10 then 成绩 else 0 end,case when DatePart('m',年月)=11 then 成绩 else 0 end,case when DatePart('m',年月)=12 then 成绩 else 0 end From 表名

参考下这个

补充:
如果有规律也可以做到,没有规律就不能这样处理了
比如你的200901 是2009年1月 200910 是2009年十月 而没有20091这样的值出现的话
case when 年月=200901 then 成绩 else 0 end 就是一月的了
waryerrr
2009-12-20
知道答主
回答量:19
采纳率:0%
帮助的人:0
展开全部
还是建议你以后使用数据库时使用标准字段, 这样即便可以通过程序来解决, 也容易出错
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式