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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- while(liunx,unix)中的迴圈執行某程式用法While
- JavaScript中的while迴圈JavaScriptWhile
- while迴圈以及do while迴圈While
- mysql 的procedure 中 loop迴圈的用法。MySqlOOP
- Java入門學習-學習if & else,for迴圈,foreach迴圈,while迴圈的用法。JavaWhile
- C語言——迴圈結構(for迴圈,while迴圈,do-while迴圈)C語言While
- while迴圈While
- C語言程式設計學習中while迴圈和do……while迴圈C語言程式設計While
- PHP For & While 迴圈PHPWhile
- C#程式設計基礎第七課:C#中的基本迴圈語句:while迴圈、do-while迴圈、for迴圈、foreach迴圈的使用C#程式設計While
- Java 迴圈 - for, while 及 do…whileJavaWhile
- 04流程控制 for迴圈,while迴圈While
- python while迴圈PythonWhile
- linux while 迴圈LinuxWhile
- while迴圈補充While
- Java迴圈結構-for,while及do…whileJavaWhile
- Java while和do while迴圈詳解JavaWhile
- python-while迴圈PythonWhile
- Java 迴圈結構 - for, while 及 do...whileJavaWhile
- c#入門-while迴圈C#While
- java學習之while迴圈JavaWhile
- while + else 使用,while死迴圈與while的巢狀,for迴圈基本使用,range關鍵字,for的迴圈補充(break、continue、else) ,for迴圈的巢狀,基本資料型別及內建方法While巢狀資料型別
- 探討兩種迴圈表示方法的區別,while迴圈與for迴圈的小總結While
- Object-C,迴圈語句for,while,do-whileObjectWhile
- Python中迴圈語句中的else用法Python
- Python中for迴圈和while迴圈有什麼區別?Python入門教程PythonWhile
- python04: while迴圈語句 break continue for in 迴圈PythonWhile
- python 基礎習題6--for迴圈和while迴圈PythonWhile
- while迴圈和do迴圈、緩衝區、一維陣列While陣列
- C#練習,應用for,while,do-while迴圈C#While
- web前端開發教程-while迴圈Web前端While
- 15-python之while迴圈PythonWhile
- java死迴圈while(true)vsfor(;;)JavaWhile
- PyThon range()函式中for迴圈用法Python函式
- 【js迴圈語句】for與while的區別JSWhile
- js迴圈中reduce的用法簡單介紹JS
- Matlab的if語句switch語句for迴圈while迴圈語句練習MatlabWhile
- Java基礎 迴圈語句 for while do.....while語句JavaWhile