以下的文章主要介紹的是mysql游標的使用筆記,其可以用在儲存過程的sql語句,其主要型別主要有以下幾種,以下就是對其詳細介紹,相信如果你掌握了這項技術,會在以後的學習或是工作中帶來很大的幫助。
1、 無返回結果語句,如:insert,update,drop, delete等
2、 select語句返回單行變數並可傳給本地變數(select ..into)
3、 返回多行結果集的select語句,並可使用mysql游標迴圈處理
注意,儲存過程返回的多行結果集,可以被客戶端程式(如php)所接收,但要在乙個儲存過程中接收另乙個儲存過程的結果集是不可能的,一般解決辦法是存入臨時表供其它過程共用
4、 prepare語句
以下主要講述游標及prepare部分
游標定義
declare cursor_name cursor for select_statement;
游標操作
open 開啟游標
open cursor_name;
fetch 獲取游標當前指標的記錄,並傳給指定變數列表,注意變數數必須與mysql游標返回的字段數一致,要獲得多行資料,使用迴圈語句去執行fetch
fetch cursor_name into variable list;
close關閉游標
close cursor_name ;
注意:mysql的游標是向前唯讀的,也就是說,你只能順序地從開始往後讀取結果集,不能從後往前,也不能直接跳到中間的記錄.
乙個完整的例子:
定義本地變數
declare o varchar(128);
定義游標
declare ordernumbers cursor
for
select callee_name from account_tbl where
acct_timeduration
=10800
; declare continue handler for not found set
no_more_departments=1
; set
no_more_departments=0
; 開啟游標
open ordernumbers;
迴圈所有的行
repeat
-- get order number
fetch ordernumbers into o;
update account set
allmoney
allmoney
=allmoney+72,
lastmonthconsume
lastmonthconsume
=lastmonthconsume-72 where
numtg
=@o;
迴圈結束
until no_more_departments
end repeat;
關閉游標
close ordernumbers;
delimiter $$
use `kubauser`$$
drop procedure if exists `cursortest`$$
create definer=`coo8new`@`%` procedure `cursortest`(out a varchar(50),out b varchar(50))
begin
declare _outuserid varchar(50);
declare _kubauserid varchar(50);
declare flag int;
declare update_cursor cursor
for
select outuserid,kubauserid from ecuser_cooperationuser;
declare continue handler for not found set flag=1;
set flag=0;
open update_cursor;
repeat /*迴圈*/
fetch update_cursor into _outuserid,_kubauserid;
set a=_outuserid;
set b=_kubauserid;
/*update set where*/
until flag
end repeat;
close update_cursor ;
end$$
delimiter ;
mysql 游標的使用
可以用在儲存過程的sql語句主要有以下型別 1 無返回結果語句,如 insert,update,drop,delete等 2 select語句返回單行變數並可傳給本地變數 select into 3 返回多行結果集的select語句,並可使用游標迴圈處理 注意,儲存過程返回的多行結果集,可以被客戶端...
mysql游標的使用
這是乙個游標的使用例子.但是其中有幾點需要注意,就是為什麼要加入declare continue handler for sqlstate 02000 set tmpname null 這樣的一句話.如果不加的話將直接報錯.no data zero rows fetched,selected,or ...
MySQL游標的使用
在編寫儲存過程時,查詢可能返回多條記錄,如果,資料量非常大,則需要使用游標來逐條讀取查詢結果集中的記錄 游標,是一種用於輕鬆處理多行資料的機制 使用游標處理結果集中的資料,需要先宣告游標 游標,必須宣告在宣告變數 條件之後,宣告處理程式之前 mysql中,使用declare關鍵字來宣告游標 語法格式...