当前位置: 代码迷 >> PB >> pb11.5数据库查询的BUG解决方案
  详细解决方案

pb11.5数据库查询的BUG解决方案

热度:158   发布时间:2016-04-29 09:24:08.0
pb11.5数据库查询的BUG
以下语句在pb9中查询得出结果ll_cnt=1(正确的结果),但在PB11.5中得出结果0
其中变量ls_c是空值
select count(*) into ll_cnt from ab
where a='01' and b='01'and c =:ls_c;
   
请各位高手指教!


------解决方案--------------------
select count(*) into ll_cnt from ab
where a='01' and b='01'and c =:ls_c;

应该是
select count(*) into :ll_cnt from ab
where a='01' and b='01'and c =:ls_c;
------解决方案--------------------
注意变量

:ll_cnt
------解决方案--------------------
上面已经给你说了,你还问。。
------解决方案--------------------
我就木纳了,你PB环境怎么验证就通过了。
  相关解决方案