MySql游標的應用實例。本站提示廣大學習愛好者:(MySql游標的應用實例)文章只能為提供參考,不一定能成為您想要的結果。以下是MySql游標的應用實例正文
mysql游標應用的全部進程為:
1.創立游標
DECLARE calc_bonus CURSOR FOR SELECT id, salary, commission FROM employees;
2.翻開游標
OPEN calc_bonus;
3.應用游標
FETCH calc_bonus INTO re_id, re_salary, re_comm;
4.封閉游標
CLOSE calc_bonus;
實例代碼以下所示:
begin
declare temp_user_id int default null;
declare stop int default 0;
#聲明游標
declare temp_cur cursor for select f_user_id from table_test where f_user_id=1;
#聲明游標的異常處置
declare continue handler for sqlstate '02000' set stop=1;
open temp_cur;
fetch temp_cur into temp_user_id;
#斷定游標能否達到最初
while stop<>1 do
#各類斷定
#讀取下一行的數據
fetch temp_cur into temp_user_id;
#輪回停止
end while;
#封閉游標
close temp_cur;
end