主頁 > 知識庫 > mysql游標(biāo)的原理與用法實例分析

mysql游標(biāo)的原理與用法實例分析

熱門標(biāo)簽:機器人打電銷電話 南寧外呼系統(tǒng)招商 鄭州網(wǎng)絡(luò)外呼系統(tǒng)價錢 怎么更改高德地圖標(biāo)注 400電話到哪辦理優(yōu)惠 上海市三維地圖標(biāo)注 電話機器人是電腦呼號嗎 博樂電銷機器人 云南大數(shù)據(jù)外呼系統(tǒng)

本文實例講述了mysql游標(biāo)的原理與用法。分享給大家供大家參考,具體如下:

本文內(nèi)容:

  • 什么是游標(biāo)
  • 創(chuàng)建游標(biāo)
  • 使用游標(biāo)

首發(fā)日期:2018-04-18


什么是游標(biāo):

  • 如果你前面看過mysql函數(shù),會發(fā)現(xiàn)無法使用返回多行結(jié)果的語句。但如果你又確實想要使用時,就需要使用到游標(biāo),游標(biāo)可以幫你選擇出某個結(jié)果(這樣就可以做到返回單個結(jié)果)。
  • 另外,使用游標(biāo)也可以輕易的取出在檢索出來的行中前進或后退一行或多行的結(jié)果。
  • 游標(biāo)可以遍歷返回的多行結(jié)果。

補充:

  • Mysql中游標(biāo)只適用于存儲過程以及函數(shù)。


創(chuàng)建游標(biāo):

  • 語法:
    • 1.定義游標(biāo):declare 游標(biāo)名 cursor for select語句;
    • 2.打開游標(biāo):open 游標(biāo)名;
    • 獲取結(jié)果:fetch 游標(biāo)名 into 變量名[,變量名];
    • 關(guān)閉游標(biāo):close 游標(biāo)名;
      create procedure p1()
      begin
        declare id int;
        declare name varchar(15);
        -- 聲明游標(biāo)
        declare mc cursor for select * from class;
        -- 打開游標(biāo)
        open mc;
        -- 獲取結(jié)果
        fetch mc into id,name;
        -- 這里是為了顯示獲取結(jié)果
        select id,name;
        -- 關(guān)閉游標(biāo)
        close mc;
        
      end;
      create procedure p2()
      begin
        declare id int;
        declare name varchar(15);
        -- 聲明游標(biāo)
        declare mc cursor for select * from class;
        -- 打開游標(biāo)
        open mc;
        -- 獲取結(jié)果
        loop -- 循環(huán),將表的內(nèi)容都轉(zhuǎn)移到class2中
        fetch mc into id,name;
        -- 這里是為了顯示獲取結(jié)果
        insert into class2 values(id,name);
        -- 關(guān)閉游標(biāo)
        end loop;
        close mc;
        
      end;


使用游標(biāo):

  • 游標(biāo)每一次fetch都是獲取一行結(jié)果,可以使用變量來獲取fetch到的每一列的值
    create procedure p2()
    begin
      declare id int;
      declare name varchar(15);
      -- 聲明游標(biāo)
      declare mc cursor for select * from class;
      -- 打開游標(biāo)
      open mc;
      -- 獲取結(jié)果
      loop -- 循環(huán),將表的內(nèi)容都轉(zhuǎn)移到class2中
      fetch mc into id,name;
      -- 這里是為了顯示獲取結(jié)果
      insert into class2 values(id,name);
      -- 關(guān)閉游標(biāo)
      end loop;
      close mc;
      
    end;

上面的代碼會有一個報錯,不斷循環(huán)的話,始終會達到表的末尾,到了末尾就無法繼續(xù)fetch,一般來說都要避免報錯,到了末尾前會有一個mysql定義的

create procedure p3()
begin
  declare id int;
  declare name varchar(15);
  declare flag int default 0;
  -- 聲明游標(biāo)
  declare mc cursor for select * from class;
  declare continue handler for not found set flag = 1;
  -- 打開游標(biāo)
  open mc;
  -- 獲取結(jié)果
  l2:loop 
  
  fetch mc into id,name;
  if flag=1 then -- 當(dāng)無法fetch會觸發(fā)handler continue
    leave l2;
  end if;
  -- 這里是為了顯示獲取結(jié)果
  insert into class2 values(id,name);
  -- 關(guān)閉游標(biāo)
  end loop;
  close mc;
  
end;

call p3();-- 不報錯
select * from class2;

更多關(guān)于MySQL相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《MySQL查詢技巧大全》、《MySQL事務(wù)操作技巧匯總》、《MySQL存儲過程技巧大全》、《MySQL數(shù)據(jù)庫鎖相關(guān)技巧匯總》及《MySQL常用函數(shù)大匯總》

希望本文所述對大家MySQL數(shù)據(jù)庫計有所幫助。

您可能感興趣的文章:
  • MySQL 游標(biāo)的定義與使用方式
  • Mysql 存儲過程中使用游標(biāo)循環(huán)讀取臨時表
  • mysql聲明游標(biāo)的方法
  • 詳解Mysql 游標(biāo)的用法及其作用
  • 帶你徹底搞懂python操作mysql數(shù)據(jù)庫(cursor游標(biāo)講解)
  • mysql存儲過程之游標(biāo)(DECLARE)原理與用法詳解
  • MySQL游標(biāo)概念與用法詳解
  • mysql的存儲過程、游標(biāo) 、事務(wù)實例詳解
  • Mysql存儲過程中游標(biāo)的用法實例
  • Mysql存儲過程循環(huán)內(nèi)嵌套使用游標(biāo)示例代碼
  • MySQL存儲過程中游標(biāo)循環(huán)的跳出和繼續(xù)操作示例
  • MySQL 游標(biāo)的作用與使用相關(guān)

標(biāo)簽:寧夏 澳門 益陽 杭州 恩施 秦皇島 定西 白銀

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《mysql游標(biāo)的原理與用法實例分析》,本文關(guān)鍵詞  mysql,游,標(biāo)的,原理,與,用法,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《mysql游標(biāo)的原理與用法實例分析》相關(guān)的同類信息!
  • 本頁收集關(guān)于mysql游標(biāo)的原理與用法實例分析的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章