MySQL 遊標使用

來源:互聯網
上載者:User

標籤:位置   mys   handle   pre   csdn   efault   sky   www   別名   

遊標的文法

-- 定義遊標狀態變數DECLARE    done INT DEFAULT 0;-- 定義遊標DECLARE    cursor_name CURSOR FOR ( SELECT select_expr FROM table_references ) -- 設定當遊標查不到資料的時候設定為1DECLARE    CONTINUE HANDLER NOT found     SET done = 1;OPEN cursor_name;-- 開啟遊標FETCH cursor_name INTO variable_name;-- 取出遊標的資料放入對應位置的變數中CLOSE cursor_name;-- 使用完遊標一定要關閉-- 1.FETCH cursor_name INTO 到的變數名稱需要使用DECLARE定義,且順序必須在遊標定義之前。-- 2.CURSOR FOR 查詢出來的資料列數必須和 FETCH cursor_name INTO 到的變數數量一致,否則會取不到資料,為NULL。-- 3.FETCH cursor_name INTO 到的變數名稱不能與 SELECT 查詢列名稱一致,使用AS別名也不行

 

知識擴充:

  1.MySQL遊標取值為空白的原因-->https://www.cnblogs.com/sidesky/p/3432110.html

  2.MySQL遊標嵌套-->https://www.cnblogs.com/phao123/p/6006780.html

  3.MySQL遊標取出空值的Bug-->http://www.cnblogs.com/leohahah/p/9401343.html

  4.MySQL中遊標的定義與使用方式-->50848216

MySQL 遊標使用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.