- 论坛徽章:
- 0
|
本帖最后由 cenalulu 于 2012-11-06 16:20 编辑
#add by cenalulu:解决方案见6楼
mysql5.5存贮过程调用一个动态SQL有一个BUG,例:
open t1_csr;
t1_loop:loop
fetch t1_csr into c_str;
SET c_sql=concat('update t1 as a set a.field1=(',
'select ifnull(sum(my_function1(b.field1)), 0) ',
'from t2 as b where b.field2=',c_str,') ',
'where a.field2=',c_str);
set @sql=c_sql;
prepare exec_sql from @sql;
execute exec_sql;
deallocate prepare exec_sql;
end loop t1_loop;
close t1_csr;
当这个SQL中的t2表返回为空时,mysql5.5就自动退出t1_loop循环,
如果取消my_function1自定义函数而改用为b.field2却正常(说明调用自定义函数时如果记录集为空则调用出错)。
相同的存贮过程在mysql5.1下却是正常的 |
|