中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

mysql游標的作用是什么

發布時間:2022-06-28 11:50:52 來源:億速云 閱讀:344 作者:iii 欄目:MySQL數據庫

今天小編給大家分享一下mysql游標的作用是什么的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

在mysql中,游標有指針的作用,主要用于對查詢數據庫所返回的記錄結果集進行遍歷,以便進行相應的操作。 游標實際上是一種能從包括多條數據記錄的結果集中每次提取一條記錄的機制。關系數據庫管理系統實質是面向集合的,在MySQL中并沒有一種描述表中單一記錄的表達形式,除非使用WHERE子句來限制只有一條記錄被選中;所以有時必須借助于游標來進行單條記錄的數據處理。

本教程操作環境:windows7系統、mysql8版本、Dell G3電腦。

MySQL游標(Cursor)

游標實際上是一種能從包括多條數據記錄的結果集中每次提取一條記錄的機制。

游標充當指針的作用。

盡管游標能遍歷結果中的所有行,但他一次只指向一行。

游標的作用就是用于對查詢數據庫所返回的記錄進行遍歷,以便進行相應的操作。

關系數據庫管理系統實質是面向集合的,在 MySQL 中并沒有一種描述表中單一記錄的表達形式,除非使用 WHERE 子句來限制只有一條記錄被選中。所以有時我們必須借助于游標來進行單條記錄的數據處理。

一般通過游標定位到結果集的某一行進行數據修改。

游標的用法

1、聲明一個游標: declare 游標名稱 CURSOR for table;(這里的table可以是你查詢出來的任意集合)

2、打開定義的游標:open 游標名稱;

3、獲得下一行數據:FETCH  游標名稱 into testrangeid,versionid;

4、需要執行的語句(增刪改查):這里視具體情況而定

5、釋放游標:CLOSE 游標名稱;

注:mysql存儲過程每一句后面必須用;結尾,使用的臨時字段需要在定義游標之前進行聲明。

實例

-  BEGIN  
  --定義變量  declare testrangeid BIGINT;  
declare versionid BIGINT;   
declare done int;  
--創建游標,并存儲數據  declare cur_test CURSOR for   
   select id as testrangeid,version_id as versionid from tp_testrange;  
--游標中的內容執行完后將done設置為1  
 DECLARE CONTINUE HANDLER FOR NOT FOUND SET done=1;   
--打開游標  open cur_test;  
--執行循環    posLoop:LOOP  
--判斷是否結束循環  
        IF done=1 THEN    
      LEAVE posLoop;  
    END IF;   
--取游標中的值  
    FETCH  cur_test into testrangeid,versionid;  
--執行更新操作  
    update tp_data_execute set version_id=versionid where testrange_id = testrangeid;  
  END LOOP posLoop;  
--釋放游標  CLOSE cur_test;  
  
END  -

例子2:

我們現在要用存儲過程做一個功能,統計iphone的總庫存是多少,并把總數輸出到控制臺。

--在windows系統中寫存儲過程時,如果需要使用declare聲明變量,需要添加這個關鍵字,否則會報錯。  delimiter //  drop procedure if exists StatisticStore;  
CREATE PROCEDURE StatisticStore()  
BEGIN  
    --創建接收游標數據的變量  
    declare c int;  
    declare n varchar(20);  
    --創建總數變量  
    declare total int default 0;  
    --創建結束標志變量  
    declare done int default false;  
    --創建游標  
    declare cur cursor for select name,count from store where name = 'iphone';  
    --指定游標循環結束時的返回值  
    declare continue HANDLER for not found set done = true;  
    --設置初始值  
    set total = 0;  
    --打開游標  
    open cur;  
    --開始循環游標里的數據      read_loop:loop  
    --根據游標當前指向的一條數據  
    fetch cur into n,c;  
    --判斷游標的循環是否結束  
    if done then  
        leave read_loop;    --跳出游標循環  
    end if;  
    --獲取一條數據時,將count值進行累加操作,這里可以做任意你想做的操作,  
    set total = total + c;  
    --結束游標循環  
    end loop;  
    --關閉游標  
    close cur;  
  
    --輸出結果  
    select total;  
END;  
--調用存儲過程  call StatisticStore();

fetch是獲取游標當前指向的數據行,并將指針指向下一行,當游標已經指向最后一行時繼續執行會造成游標溢出。
使用loop循環游標時,他本身是不會監控是否到最后一條數據了,像下面代碼這種寫法,就會造成死循環;

read_loop:loop  
fetch cur into n,c;  
set total = total+c;  
end loop;

在MySql中,造成游標溢出時會引發mysql預定義的NOT FOUND錯誤,所以在上面使用下面的代碼指定了當引發not found錯誤時定義一個continue 的事件,指定這個事件發生時修改done變量的值。

declare continue HANDLER for not found set done = true;

所以在循環時加上了下面這句代碼:

--判斷游標的循環是否結束  if done then  
    leave read_loop;    --跳出游標循環  end if;

如果done的值是true,就結束循環。繼續執行下面的代碼

使用方式

游標有三種使用方式:

  • 第一種就是上面的實現,使用loop循環;

  • 第二種方式如下,使用while循環:

drop procedure if exists StatisticStore1;  
CREATE PROCEDURE StatisticStore1()  
BEGIN  
    declare c int;  
    declare n varchar(20);  
    declare total int default 0;  
    declare done int default false;  
    declare cur cursor for select name,count from store where name = 'iphone';  
    declare continue HANDLER for not found set done = true;  
    set total = 0;  
    open cur;  
    fetch cur into n,c;  
    while(not done) do  
        set total = total + c;  
        fetch cur into n,c;  
    end while;  
      
    close cur;  
    select total;  
END;  
  
call StatisticStore1();

第三種方式是使用repeat執行:

drop procedure if exists StatisticStore2;  
CREATE PROCEDURE StatisticStore2()  
BEGIN  
    declare c int;  
    declare n varchar(20);  
    declare total int default 0;  
    declare done int default false;  
    declare cur cursor for select name,count from store where name = 'iphone';  
    declare continue HANDLER for not found set done = true;  
    set total = 0;  
    open cur;  
    repeat  
    fetch cur into n,c;  
    if not done then  
        set total = total + c;  
    end if;  
    until done end repeat;  
    close cur;  
    select total;  
END;  
  
call StatisticStore2();

游標嵌套

在mysql中,每個begin end 塊都是一個獨立的scope區域,由于MySql中同一個error的事件只能定義一次,如果多定義的話在編譯時會提示Duplicate handler declared in the same block。

drop procedure if exists StatisticStore3;  
CREATE PROCEDURE StatisticStore3()  
BEGIN  
    declare _n varchar(20);  
    declare done int default false;  
    declare cur cursor for select name from store group by name;  
    declare continue HANDLER for not found set done = true;  
    open cur;  
    read_loop:loop  
    fetch cur into _n;  
    if done then  
        leave read_loop;  
    end if;  
    begin  
        declare c int;  
        declare n varchar(20);  
        declare total int default 0;  
        declare done int default false;  
        declare cur cursor for select name,count from store where name = 'iphone';  
        declare continue HANDLER for not found set done = true;  
        set total = 0;  
        open cur;  
        iphone_loop:loop  
        fetch cur into n,c;  
        if done then  
            leave iphone_loop;  
        end if;  
        set total = total + c;  
        end loop;  
        close cur;  
        select _n,n,total;  
    end;  
    begin  
            declare c int;  
            declare n varchar(20);  
            declare total int default 0;  
            declare done int default false;  
            declare cur cursor for select name,count from store where name = 'android';  
            declare continue HANDLER for not found set done = true;  
            set total = 0;  
            open cur;  
            android_loop:loop  
            fetch cur into n,c;  
            if done then  
                leave android_loop;  
            end if;  
            set total = total + c;  
            end loop;  
            close cur;  
        select _n,n,total;  
    end;  
    begin  
      
    end;  
    end loop;  
    close cur;  
END;  
  
call StatisticStore3();

上面就是實現一個嵌套循環,當然這個例子比較牽強。湊合看看就行。

動態SQL

Mysql 支持動態SQL的功能

set @sqlStr='select * from table where condition1 = ?';  
prepare s1 for @sqlStr;  
--如果有多個參數用逗號分隔  execute s1 using @condition1;  
--手工釋放,或者是 connection 關閉時, server 自動回收  deallocate prepare s1;

以上就是“mysql游標的作用是什么”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

虞城县| 和林格尔县| 昭苏县| 通化县| 香格里拉县| 沧源| 乐亭县| 民乐县| 秦安县| 绥江县| 大新县| 崇仁县| 宜兴市| 乃东县| 武邑县| 建瓯市| 东兴市| 甘泉县| 龙口市| 澎湖县| 长治市| 鄱阳县| 无棣县| 胶南市| 滨州市| 新郑市| 昌乐县| 宁陕县| 白水县| 娄底市| 剑河县| 明溪县| 彩票| 读书| 华容县| 建昌县| 盈江县| 万安县| 明水县| 武威市| 上高县|