以下语句在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环境怎么验证就通过了。