mysql 游标 + while 多循环一次

2017-09-17  本文已影响375人  比特舞者

什么鬼

在使用游标 + loop 或者游标 + while进行遍历操作的时候,往往会遇到多执行一次的情况。例如,select 出来的是 1 条数据,然而进行了两次循环。例如:

declare xxx int
declare done INT DEFAULT FALSE;
declare cursor cur for select xxx from xxx;
declare continue handler for not found set done = true;
open cur;
while not done do
  fetch cur into xxx;
   -- do someting
end while;
close cur;

这个鬼

其根本的原因是无论是游标 + loop 或者游标 + while都需要进程捕捉到not found的异常后才将 done = true,按道理说,应该执行完就结束了,但是还忘记了一点,我们使用的异常捕捉类型是continue,这种类型的特点是当日常发生后 mysql 的内核还会继续往下执行,直到执行到语句块的结束。所以表现为多循环了一次。
解决的方法:

画符咒

正确的写法如下:

declare xxx int
declare done INT DEFAULT FALSE;
declare cursor cur for select xxx from xxx;
declare exit handler for not found set done = true;
open cur;
while not done do
  fetch cur into xxx;
  if not done then
   -- do someting
  end if;
end while;
close cur;

或者

declare xxx int
declare done INT DEFAULT FALSE;
declare cursor cur for select xxx from xxx;
declare continue handler for not found set done = true;
open cur;
fetch cur into xxx;
while not done do
   -- do someting
  fetch cur into xxx;
end while;
close cur;
上一篇下一篇

猜你喜欢

热点阅读