免费注册 查看新帖 |

Chinaunix

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

Perl mysql查询出现case不能使用问题? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2015-07-09 15:16 |只看该作者 |倒序浏览
perl跟mysql交互,通过dbi连接后,将mysql数据查询出来,好像不支持case when
请问大家有解决办法吗?
my $sth=$dbh->prepare(select b.name as "名称",  
      case when a.OBJTYPE ="1" then (select t1.nickname from area t1 where t1.ref_id=a.ref_id)
           when a.OBJTYPE ="4" then (select t2.nickname from city t2 where t2.city_id=a.city_id)
           when a.objtype ="3" then "3333"
           when a.OBJTYPE ="2" then "4444"
      end "对象",
       a.sett_date as "周期"
from sett_results a,group_detail b
where a.objid=b.id and a.method=1
order by a.objid,a.sett_date");
$sth->execute;

上面执行过程中报错。Bareword found where operator expected at 13.pl line 16, near ""1" then"
        (Missing operator before then?)
请问有什么解决办法吗?

论坛徽章:
46
15-16赛季CBA联赛之四川
日期:2018-03-27 11:59:132015年亚洲杯之沙特阿拉伯
日期:2015-04-11 17:31:45天蝎座
日期:2015-03-25 16:56:49双鱼座
日期:2015-03-25 16:56:30摩羯座
日期:2015-03-25 16:56:09巳蛇
日期:2015-03-25 16:55:30卯兔
日期:2015-03-25 16:54:29子鼠
日期:2015-03-25 16:53:59申猴
日期:2015-03-25 16:53:29寅虎
日期:2015-03-25 16:52:29羊年新春福章
日期:2015-03-25 16:51:212015亚冠之布里斯班狮吼
日期:2015-07-13 10:44:56
2 [报告]
发表于 2015-07-09 15:23 |只看该作者
你都没加引号

论坛徽章:
0
3 [报告]
发表于 2015-07-09 18:12 |只看该作者
my $sth=$dbh->prepare("select b.name as '名称',  
      case when a.OBJTYPE ='1' then (select t1.nickname from area t1 where t1.ref_id=a.ref_id)
           when a.OBJTYPE ='4' then (select t2.nickname from city t2 where t2.city_id=a.city_id)
           when a.objtype ='3' then '3333'
           when a.OBJTYPE ='2' then '4444'
      end '对象',
       a.sett_date as '周期'
from sett_results a,group_detail b
where a.objid=b.id and a.method=1
order by a.objid,a.sett_date");
$sth->execute;

论坛徽章:
0
4 [报告]
发表于 2015-07-09 18:13 |只看该作者
谢谢楼上的
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP