mysql 中 while 迴圈的用法。
create procedure dowhile()
begin
declare v1 int default 5;
while v1 > 0 do
begin
set v1=v1-1;
select v1;
end;
end while;
end;//
begin
declare v1 int default 5;
while v1 > 0 do
begin
set v1=v1-1;
select v1;
end;
end while;
end;//
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/90618/viewspace-438678/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- JavaScript中的while迴圈JavaScriptWhile
- while迴圈以及do while迴圈While
- for 迴圈與 while 迴圈While
- while迴圈 case迴圈While
- C語言——迴圈結構(for迴圈,while迴圈,do-while迴圈)C語言While
- while迴圈While
- C語言程式設計學習中while迴圈和do……while迴圈C語言程式設計While
- PHP For & While 迴圈PHPWhile
- python while迴圈PythonWhile
- C#程式設計基礎第七課:C#中的基本迴圈語句:while迴圈、do-while迴圈、for迴圈、foreach迴圈的使用C#程式設計While
- Java 迴圈 - for, while 及 do…whileJavaWhile
- sass的迴圈for,while,eachWhile
- 04流程控制 for迴圈,while迴圈While
- while迴圈補充While
- python-while迴圈PythonWhile
- 分別使用while迴圈、do…while迴圈和for迴圈輸出1~100之間的所有偶數While
- Java迴圈結構-for,while及do…whileJavaWhile
- Java while和do while迴圈詳解JavaWhile
- 七 while迴圈語句While
- Java 迴圈結構 - for, while 及 do...whileJavaWhile
- python04: while迴圈語句 break continue for in 迴圈PythonWhile
- Python中for迴圈和while迴圈有什麼區別?Python入門教程PythonWhile
- while + else 使用,while死迴圈與while的巢狀,for迴圈基本使用,range關鍵字,for的迴圈補充(break、continue、else) ,for迴圈的巢狀,基本資料型別及內建方法While巢狀資料型別
- 15-python之while迴圈PythonWhile
- c#入門-while迴圈C#While
- while read line 與for迴圈的區別While
- 探討兩種迴圈表示方法的區別,while迴圈與for迴圈的小總結While
- python 基礎習題6--for迴圈和while迴圈PythonWhile
- PyThon range()函式中for迴圈用法Python函式
- C#練習,應用for,while,do-while迴圈C#While
- while迴圈和do迴圈、緩衝區、一維陣列While陣列
- Python學習-while迴圈練習PythonWhile
- Python基礎-While迴圈語句PythonWhile
- web前端開發教程-while迴圈Web前端While
- python基礎 while迴圈練習PythonWhile
- Python的if else 巢狀 和forin while 迴圈Python巢狀While
- 【js迴圈語句】for與while的區別JSWhile
- js迴圈中reduce的用法簡單介紹JS
- Java基礎 迴圈語句 for while do.....while語句JavaWhile