Skip to content

Latest commit

 

History

History
194 lines (161 loc) · 4.83 KB

07.流程控制结构.md

File metadata and controls

194 lines (161 loc) · 4.83 KB

12. 流程控制结构

  • 顺序结构:程序从上往下依次执行
  • 分支结构:程序从两条或多条路径中选择一条去执行
  • 循环结构:程序在满足一定条件的基础上,重复执行一段代码

12.1 分支结构

1. if函数

功能:实现简单的双分支

语法:select if(表达式1, 表达式2, 表达式3)

执行顺序:如果表达式1成立,则if函数返回表达式2的值,否则返回表达式3的值

2. case函数

  • 情况1:类似于switch语句,一般用于实现的等值判断
  • 情况2:类似于多重if语句,一般用于实现区间判断
#情况1
case 变量|表达式|字段 
when 要判断的值 then 返回的值1或语句1;
when 要判断的值2 then 返回的值2或语句2;
...
else 要返回的值n或语句n;
end case;

#情况2
case
when 要判断的条件1 then 返回的值1或语句1;
when 要判断的条件2 then 返回的值2或语句2;
...
else 要返回的值n或语句n;
end case;

特点:

  • 可以作为表达式,嵌套在其他语句中使用,可以放在任何地方,begin end中或外面
  • 可以作为独立的语句去使用,只能放在 begin end中
  • 如果when中的值或条件成立,则执行对应的then后面的语句,并且结束case,如果都不满足,则执行else中的语句或值
  • else可以省略,如果else省略了,并且所有when条件都不满足,则返回null
#创建存储过程,根据传入的成绩,显示等级,90-100显示A,80-90显示B,60-80显示C,否则显示D
create procedure test_case(in score int)
begin
    case
    when socre>=90 and score<=100 then select 'A';
    when socre>=80 and score<=90 then select 'B';
    when socre>=60 and score<=80 then select 'C';
    else select 'D';
    end case;
end $
call test_case(95)$

3. if结构

功能:实现多重分支

应用场合:应用在begin end中

if 条件1 then 语句1;
elseif 条件2 then 语句2;
...
else 语句n;
end if;

#根据传入的成绩,返回等级,90-100返回A,80-90返回B,60-80返回C,否则返回D
create function test_if(score int) returns char
begin
    if score >= 90 and score <= 100 then return 'A';
    elseif score >= 80 then return 'B';
    elseif score >= 60 then return 'C';
    else return 'D';
    end if;
end $

12.2 循环结构

只能用在 begin end 中

分类:

  • while
  • loop
  • repeat

循环控制:

  • iterate: 类似于 continue,用于结束当次循环,继续下次循环
  • leave: 类似于 break,用于跳出所在的循环

对比:

  1. 这三种循环都可以省略名称,但如果循环中添加了循环控制语句(leave或iterate)则必须添加名称
  2. loop 可以用来模拟简单的死循环

1. while

标签: while 循环条件 do 
    循环体;
end while 标签;

2. loop

  • 可以用来模拟简单的死循环
标签: loop
    循环体;
end loop 标签;

3. repeat

标签: repeat
    循环体;
until 结束循环的条件
end repeat 标签;
#1.没有循环控制语句
#批量插入,根据次数插入到admin表中多条记录
create procedure pro_while1(in insertCont int)
begin
    declare i int default 1;
    while i<=insertCont do
        insert into admin(unsername,password) values(concat('rose',i),'666');
        set i=i+1;
    end while;
end $
call pro_while1(100)$

#2. 添加leave语句
#批量插入,根据次数插入到admin表中多条记录,如果次数>20则停止
truncate table admin$
drop procedure pro_while1$

create procedure pro_while1(in insertCont int)
begin
    declare i int default 1;
    a:while i<=insertCont do
        insert into admin(unsername,password) values(concat('rose',i),'666');
        if i>=20 then leave a;
        end if;
        set i=i+1;
    end while a;
end $
call pro_while1(100)$

#3. 添加iterate语句
#批量插入,根据次数插入到admin表中多条记录,只插入偶数次
truncate table admin$
drop procedure pro_while1$

create procedure pro_while1(in insertCont int)
begin
    declare i int default 0;
    a:while i<=insertCont do
        set i=i+1;
        if mod(i, 2)!=0 then iterate a;
        end if;
        insert into admin(unsername,password) values(concat('rose',i),'666');
    end while a;
end $
call pro_while1(100)$
  • 经典案例
create table stringcontent(
    id int primary key auto_increment,
    content varchar(20)
);

delimiter $
create procedure test_randstr_insert(in insertCount int)
begin
    declare i int default 1;
    declare str varchar(26) default 'abcdefghijklmnopqrstuvwxyz';
    declare startIndex int default 1;
    declare len int default 1;
    while i<=insertCont do
        set len = floor(rand()*(20-startIndex+1)+1);
        set startIndex = floor(rand()*26+1);
        insert into stringcontent(content) values(substr(str, startIndex, len));
        set i=i+1;
end $
call test_randstr_insert(10)$