MySQL預存程序中的3種迴圈

來源:互聯網
上載者:User

在MySQL預存程序的語句中有三個標準的迴圈方式:WHILE迴圈,LOOP迴圈以及REPEAT迴圈。還有一種非標準的迴圈方式:GOTO,不過這種迴圈方式最好別用,很容易引起程式的混亂,在這裡就不錯具體介紹了。

這幾個迴圈語句的格式如下:
WHILE……DO……END WHILE
REPEAT……UNTIL END REPEAT
LOOP……END LOOP
GOTO。

 

 

   下面首先使用第一種迴圈編寫一個例子。
mysql> create procedure pro10()
    -> begin
    -> declare i int;
    -> set i=0;
    -> while i<5 do
    ->     insert into t1(filed) values(i);
    ->     set i=i+1;
    -> end while;
    -> end;//
Query OK, 0 rows affected (0.00 sec)
    在這個例子中,INSERT和SET語句在WHILE和END WHILE之間,當變數i大於等於5的時候就退出迴圈。使用set i=0;語句是為了防止一個常見的錯誤,如果沒有初始化,i預設變數值為NULL,而NULL和任何值操作的結果都是NULL。
    執行一下這個預存程序併產看一下執行結果:
mysql> delete from t1//
Query OK, 0 rows affected (0.00 sec)
mysql> call pro10()//
Query OK, 1 row affected (0.00 sec)
mysql> select * from t1//
+——-+
| filed |
+——-+
|     0 |
|     1 |
|     2 |
|     3 |
|     4 |
+——-+
5 rows in set (0.00 sec)
    以上就是執行結果,有5行資料插入到資料庫中,證明預存程序編寫正確無誤^_^。

   再來看一下第二個迴圈控制指令 REPEAT……END REPEAT。使用REPEAT迴圈控制語句編寫下面這個預存程序:
mysql> create procedure pro11()
    -> begin
    -> declare i int default 0;
    -> repeat
    ->     insert into t1(filed) values(i);
    ->     set i=i+1;
    ->     until i>=5
    -> end repeat;
    -> end;//
Query OK, 0 rows affected (0.00 sec)
    這個REPEAT迴圈的功能和前面WHILE迴圈一樣,區別在於它的執行後檢查是否滿足迴圈條件(until i>=5),而WHILE則是執行前檢查(while i<5 do)。
    不過要注意until i>=5後面不要加分號,如果加分號,就是提示法錯誤。
    編寫完成後,調用一下這個預存程序,並查看結果:
mysql> delete from t1//
Query OK, 5 rows affected (0.00 sec)

mysql> call pro11()//
Query OK, 1 row affected (0.00 sec) #雖然在這裡顯示只有一行資料受到影響,但是下面選擇資料的話,還是插入了5行資料。

mysql> select * from t1//
+——-+
| filed |
+——-+
|     0 |
|     1 |
|     2 |
|     3 |
|     4 |
+——-+
5 rows in set (0.00 sec)
一行就是執行結果,實際的作用和使用while編寫的預存程序一樣,都是插入5行資料。

再來看一下第三個迴圈控制語句LOOP……END LOOP。編寫一個預存程序程式如下:
mysql> create procedure pro12()
    -> begin
    -> declare i int default 0;
    -> loop_label: loop

 

    ->     insert into t1(filed) values(i);
    ->     set i=i+1;
    ->     if i>=5 then
    ->         leave loop_label;
    ->     end if;
    -> end loop;
    -> end;//
Query OK, 0 rows affected (0.00 sec)
從上面這個例子可以看出,使用LOOP編寫同樣的迴圈控制語句要比使用while和repeat編寫的要複雜一些:在迴圈內部加入了IF……END IF語句,在IF語句中又加入了LEAVE語句,LEAVE語句的意思是離開迴圈,LEAVE的格式是:LEAVE 迴圈標號。
    編寫完預存程序程式後,來執行並查看一下運行結果:
mysql> delete from t1//
Query OK, 5 rows affected (0.00 sec)

 

mysql> call pro12//
Query OK, 1 row affected (0.00 sec) #雖然說只有一行資料受影響,但是實際上是插入了5行資料。

mysql> select * from t1//
+——-+
| filed |
+——-+
|     0 |
|     1 |
|     2 |
|     3 |
|     4 |
+——-+
5 rows in set (0.00 sec)
    執行結果和使用WHILE、LOOP編寫的迴圈一樣,都是往標中插入5行值。

  Labels  標號和 END Labels 結束標號
   在使用loop的時候,使用到的labels標號,對於labels可以用到while,loop,rrepeat等迴圈控制語句中。而且有必要好好認識一下lables!!
mysql> create procedure pro13()
    -> label_1:begin
    -> label_2:while 0=1 do leave label_2;end while;
    -> label_3:repeat leave label_3;until 0=0 end repeat;
    -> label_4:loop leave label_4;end loop;
    -> end;//
Query OK, 0 rows affected (0.00 sec)
    上面這裡例子顯示了可以在BEGIN、WHILE、REPEAT或者LOOP語句前使用語句標號,語句標號只能在合法的語句前使用,所以LEAVE label_3意味著離開語句標號名為label_3的語句或符合語句。
    其實,也可以使用END labels來表示標號結束符。
mysql> create procedure pro14()
    -> label_1:begin
    -> label_2:while 0=1 do leave label_2;end while label_2;
    -> label_3:repeat leave label_3;until 0=0 end repeat label_3;
    -> label_4:loop leave label_4;end loop label_4;
    -> end label_1;//
Query OK, 0 rows affected (0.00 sec)
    上面就是使用了標號結束符,其實這個結束標號並不是十分有用,而且他必須和開始定義的標號名字一樣,否則就會報錯。如果要養成一個良好的編程習慣方便他人閱讀的話,可以使用這個標號結束符。

ITERATE 迭代        
     如果是在ITERATE語句,即迭代語句中的話,就必須使用LEAVE語句。ITERATE只能出現在LOOP,REPEAT和WHILE語句中,它的意思是“再次迴圈”,例如:
mysql> create procedure pro15()

 

    -> begin
    -> declare i int default 0;
    -> loop_label:loop
    ->     if i=3 then
    ->         set i=i+1;
    ->         iterate loop_label;
    ->     end if;
    ->     insert into t1(filed) values(i);
    ->     set i=i+1;
    ->     if i>=5 then
    ->        leave loop_label;
    ->     end if;
    ->   end loop;
    -> end;//
Query OK, 0 rows affected (0.00 sec)
    iterate語句和leave語句一樣,也是在迴圈內部使用,它有點類似於C/C++語言中的continue。
    那麼這個儲存程式是怎麼啟動並執行的?首先i的值為0,條件判斷語句if i=3 then判斷為假,跳過if語段,向資料庫中插入0,然後i+1,同樣後面的if i>=5 then判斷也為假,也跳過;繼續迴圈,同樣插入1和2;在i=3的時候條件判斷語句if i=3 then判斷為真,執行i=i+1,i值為4,然後執行迭代iterate loop_label;,即語句執行到iterate loop_label;後直接跳到if i=3 then判斷語句,執行判斷,這個時候由於i=4,if i=3 then判斷為假,跳過IF語段,將4添加到表中,i變為5,條件判斷if i>=5 then判斷為真,執行leave loop_label;跳出loop迴圈,然後執行end;//,結束整個預存程序。
    綜上所述,資料庫中將插入數值:0,1,2,4。執行預存程序,並查看結果:|
mysql> delete from t1//
Query OK, 5 rows affected (0.00 sec)

 

mysql> call pro15//
Query OK, 1 row affected (0.00 sec)

mysql> select * from t1//
+——-+
| filed |
+——-+
|     0 |
|     1 |
|     2 |
|     4 |
+——-+
4 rows in set (0.00 sec)

和我們上面分析的結果一樣,只插入了數值0,1,2,4。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.