MySQL 高级 - 存储过程 - 语法 - while循环
生活随笔
收集整理的這篇文章主要介紹了
MySQL 高级 - 存储过程 - 语法 - while循环
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
-- 計(jì)算從1加到n的值 -- 累加
create procedure pro_test8(n int)
begindeclare total int default 0;declare num int default 1;while num<=n doset total = total + num;set num = num + 1;end while;select total;
end$
總結(jié)
以上是生活随笔為你收集整理的MySQL 高级 - 存储过程 - 语法 - while循环的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: MySQL 高级 - 存储过程 - 语法
- 下一篇: MySQL 高级 - 存储过程 - 语法