溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

MySQL流程控制之while、repeat、loop循環(huán)實(shí)例分析

發(fā)布時(shí)間:2022-07-28 11:22:32 來源:億速云 閱讀:146 作者:iii 欄目:MySQL數(shù)據(jù)庫

今天小編給大家分享一下MySQL流程控制之while、repeat、loop循環(huán)實(shí)例分析的相關(guān)知識(shí)點(diǎn),內(nèi)容詳細(xì),邏輯清晰,相信大部分人都還太了解這方面的知識(shí),所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

MySQL流程控制之while、repeat、loop循環(huán)實(shí)例分析

前言

  • 循環(huán)是一段在程序中只出現(xiàn)一次,但可能會(huì)連續(xù)運(yùn)行多次的代碼。

  • 循環(huán)中的代碼會(huì)運(yùn)行特定的次數(shù),或者是運(yùn)行到特定條件成立時(shí)結(jié)束循環(huán)。

MySQL流程控制之while、repeat、loop循環(huán)實(shí)例分析

循環(huán)分類:

  • while

  • repeat

  • loop

循環(huán)控制:

leave 類似于 break,跳出,結(jié)束當(dāng)前所在的循環(huán)

iterate類似于 continue,繼續(xù),結(jié)束本次循環(huán),繼續(xù)下一次

while循環(huán)

【標(biāo)簽:】while 循環(huán)條件 do
循環(huán)體;
end while【 標(biāo)簽】;
-- 創(chuàng)建測(cè)試表
create table user (
uid int primary_key,
username varchar ( 50 ),
password varchar ( 50 )
);
-- -------存儲(chǔ)過程-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);

存儲(chǔ)過程語法是固定的:delimiter $$ create peocedure 循環(huán)名(參數(shù))begin 代碼 end $$ delimiter;

注意在寫循環(huán)體的時(shí)候,必須要要有定義循環(huán)的初識(shí)變量,采用declare i int default 默認(rèn)值

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

-- -------存儲(chǔ)過程-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);

如果在內(nèi)部需要跳出循環(huán)的話,采用if 判斷 ,但是最后需要end if 結(jié)尾

這里的leave就是 跳出循環(huán),相對(duì)于break

-- -------存儲(chǔ)過程-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 相對(duì)于continue 遇到就不執(zhí)行下面的代碼

repeat循環(huán)

repeat
循環(huán)體;
until 條件表達(dá)式
end repeat [標(biāo)簽];
-- -------存儲(chǔ)過程-循環(huán)控制-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 '循環(huán)結(jié)束';
end $$
delimiter ;
call proc18_repeat(100);

這個(gè)相對(duì)于是,無論如何都會(huì)執(zhí)行一次的循環(huán),然后是在內(nèi)部進(jìn)行判斷,如果滿足了就直接跳出

loop循環(huán)

 loop
循環(huán)體;
if 條件表達(dá)式 then
leave [標(biāo)簽];
end if;
end loop;
-- -------存儲(chǔ)過程-循環(huán)控制-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 '循環(huán)結(jié)束';
end $$
delimiter ;
call proc19_loop(10);

這個(gè)和repeat不同的是,需要執(zhí)行之后,利用leave 跳出循環(huán),無論是使用哪種都可以達(dá)到我們需要的效果,但是在業(yè)務(wù)中的應(yīng)用場(chǎng)景,while還是相對(duì)比較的多。

以上就是“MySQL流程控制之while、repeat、loop循環(huán)實(shí)例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會(huì)為大家更新不同的知識(shí),如果還想學(xué)習(xí)更多的知識(shí),請(qǐng)關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI