亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MySQL流程控制while,repeat,loop循環實例分析

發布時間:2022-07-12 09:47:36 來源:億速云 閱讀:141 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“MySQL流程控制while,repeat,loop循環實例分析”,內容詳細,步驟清晰,細節處理妥當,希望這篇“MySQL流程控制while,repeat,loop循環實例分析”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

前言

  • 循環是一段在程序中只出現一次,但可能會連續運行多次的代碼。

  • 循環中的代碼會運行特定的次數,或者是運行到特定條件成立時結束循環。

MySQL流程控制while,repeat,loop循環實例分析

循環分類:

  • while

  • repeat

  • loop

循環控制:

leave 類似于 break,跳出,結束當前所在的循環

iterate類似于 continue,繼續,結束本次循環,繼續下一次

while循環

【標簽:】while 循環條件 do
循環體;
end while【 標簽】;
-- 創建測試表
create table user (
uid int primary_key,
username varchar ( 50 ),
password varchar ( 50 )
);
-- -------存儲過程-while
delimiter $$
create procedure proc16_while1(in insertcount int)
begin
declare i int default 1;
label:while i<=insertcount do
insert into user(uid,username,`password`) values(i,concat('user-',i),'123456');
set i=i+1;
end while label;
end $$
delimiter ;
call proc16_while(10);

存儲過程語法是固定的:delimiter $$ create peocedure 循環名(參數)begin 代碼 end $$ delimiter;

注意在寫循環體的時候,必須要要有定義循環的初識變量,采用declare i int default 默認值

然后就是dlabel:while 判斷條件 do 循環體 end while label; end && 必須要有

-- -------存儲過程-while + leave
truncate table user;
delimiter $$
create procedure proc16_while2(in insertcount int)
begin
declare i int default 1;
label:while i<=insertcount do
insert into user(uid,username,`password`) values(i,concat('user-',i),'123456');
if i=5 then leave label;
end if;
set i=i+1;
end while label;
end $$
delimiter ;
call proc16_while2(10);

如果在內部需要跳出循環的話,采用if 判斷 ,但是最后需要end if 結尾

這里的leave就是 跳出循環,相對于break

-- -------存儲過程-while+iterate
truncate table user;
delimiter $$
create procedure proc16_while3(in insertcount int)
begin
declare i int default 1;
label:while i<=insertcount do
set i=i+1;
if i=5 then iterate label;
end if;
insert into user(uid,username,`password`) values(i,concat('user-',i),'123456');
end while label;
end $$
delimiter ;
call proc16_while3(10);

這里的iterate 相對于continue 遇到就不執行下面的代碼

repeat循環

repeat
循環體;
until 條件表達式
end repeat [標簽];
-- -------存儲過程-循環控制-repeat
use mysql7_procedure;
truncate table user;
delimiter $$
create procedure proc18_repeat(in insertCount int)
begin
declare i int default 1;
label:repeat
insert into user(uid, username, password) values(i,concat('user-',i),'123456');
set i = i + 1;
until i > insertCount
end repeat label;
select '循環結束';
end $$
delimiter ;
call proc18_repeat(100);

這個相對于是,無論如何都會執行一次的循環,然后是在內部進行判斷,如果滿足了就直接跳出

loop循環

 loop
循環體;
if 條件表達式 then
leave [標簽];
end if;
end loop;
-- -------存儲過程-循環控制-loop
truncate table user;

delimiter $$
create procedure proc19_loop(in insertCount int)
begin
declare i int default 1;
label:loop
insert into user(uid, username, password) values(i,concat('user-',i),'123456');
set i = i + 1;
if i > 5
then
leave label;
end if;
end loop label;
select '循環結束';
end $$
delimiter ;
call proc19_loop(10);

這個和repeat不同的是,需要執行之后,利用leave 跳出循環,無論是使用哪種都可以達到我們需要的效果,但是在業務中的應用場景,while還是相對比較的多。

讀到這里,這篇“MySQL流程控制while,repeat,loop循環實例分析”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

昌乐县| 绥阳县| 三穗县| 额济纳旗| 嘉兴市| 汽车| 平南县| 牙克石市| 渝中区| 江源县| 贡嘎县| 耿马| 肇州县| 册亨县| 井陉县| 抚远县| 中牟县| 工布江达县| 云阳县| 柯坪县| 马尔康县| 沙湾县| 西盟| 开阳县| 武陟县| 张家港市| 泗阳县| 江孜县| 比如县| 开化县| 家居| 资中县| 新余市| 仙居县| 蒲城县| 蛟河市| 阿图什市| 东乡县| 贵州省| 元氏县| 乌海市|