免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3776 | 回复: 5
打印 上一主题 下一主题

编写怎样的SQL语句能得出此效果 [行转列问题] [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-05-09 11:06 |只看该作者 |倒序浏览
表的内容如下:
branch     flag            count

650610000  1000               19
650610000  1300               19
650610000  1350               19
650610000  1357               17
650611300  1000                1
650611300  1300                1
650611300  1350                1
650620000  1000               19
650620000  1300               19
650620000  1350               19
650620000  1357               17
650630000  1000               19
650630000  1300               19
650630000  1350               19


编写怎样的SQL语句能得出以下效果:
(把第一列同名的对应的count字段的值作为一个新列)

branch       count1   count2  count3  count4

650610000      19      19      19      17
650611300      1         1        1
650620000      19      19      19      17
650630000      19      19      19

论坛徽章:
0
2 [报告]
发表于 2006-05-09 11:08 |只看该作者
有朋友给了我这条语句,是oracle的,但在informix下编译不过,请问在informix下如何实现?

select branch,max(c1),max(c2),max(c3),max(c4)
from
(select branch,case when flag=1000 then count else null end c1,
#             ^
#  201: A syntax error has occurred.
#
case when flag=1300 then count else null end c2,
case when flag=1350 then count else null end c3,
case when flag=1357 then count else null end c4
from grant_spec)
group by branch

论坛徽章:
0
3 [报告]
发表于 2006-05-09 11:27 |只看该作者
flag是干什么的?

论坛徽章:
0
4 [报告]
发表于 2006-05-09 11:41 |只看该作者
flag是其中一个字段

论坛徽章:
0
5 [报告]
发表于 2006-05-09 13:54 |只看该作者

关注中

select branch,case when flag=1000 then count else null end c1,
case when flag=1300 then count else null end c2,
case when flag=1350 then count else null end c3,
case when flag=1357 then count else null end c4
from grant_spec
into temp tmp_tbl;
select branch,max(c1),max(c2),max(c3),max(c4)
from tmp_tbl
group by branch

论坛徽章:
0
6 [报告]
发表于 2006-05-09 17:44 |只看该作者
非常感谢admin159 !!

用这个方法可以了!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP