程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySql游標的應用實例

MySql游標的應用實例

編輯:MySQL綜合教程

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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved