mysql自学笔记十一(Navicat Premium 15)

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

*/

#分支结构
#1、if函数
/*
功能:实现简单的双分支
语法:
select if(表达式1,表达式2,表达式3)
执行顺序:
如果表达式1成立,则if函数返回表达式的2的值,否则返回表达式3的值
应用:任何地方
*/

#2、case结构
情况1:类似于java中的switch语句,一般用于实现的等值判断

语法:
		case 变量|表达式|字段
		when 要判断的值 then 返回的值1;
		when 要判断的值 then 返回的值2;
		...
		else 要返回的值n;
		end case;

情况2:类似于Java中的多重if语句,一般用于实现区间的判断

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

call test_case(95)$

#3、if结构
/*
功能:实现多重分支

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

应用场合:应用在begin end中

*/

#根据传入的成绩,来显示等级,比如传入的成绩:90-100,返回A,80-90,返回B,60-80,返回C,否则返回D
delimiter $
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 $

select test_if(86);

#二、循环结构
/*

分类:
while、loop、repeat

循环控制:
iterate类似于continue 继续,结束本次循环继续下一次
leave 类似于break,跳出,结束当前所在的循环

*/

#1、while
/*
【标签:】while循环条件 do
				 循环体;	
end while 【标签】;
*/

#2、loop
/*
【标签:】loop
				 循环体;
end loop 【标签】;

可以用来模拟简单的死循环
*/

#3、repeat
/*
语法:
【标签:】repeat
				 循环体;
 until 结束循环的条件
 end repeat 【标签】;

*/

# while 批量拆入,根据次数插入到admin表中的多条记录
delimiter $
create procedure pro_while1(in insertCount int)
begin
		declare i int default 1;
		while i<=insertCount do
				insert into admin(username,`password`) VALUES(concat('xiao',i),'666');
				set i=i+1;
		end while;
end $

call pro_while1(100);
select * from admin;

# leave 批量拆入,根据次数插入到admin表中的多条记录,如果次数大于20则停止
delimiter $
create procedure test_while2(in insertCount int)
begin
		declare i int default 1;
		a:while i<=insertCount Do
				insert into admin(username,`password`) values(concat('you',i),'777');
				if i>=20 then leave a;
				end if;
				set i=i+1;
		end while a;
end $

call test_while2(100);

# itercate 根据次数插入到admin表中的多条记录,直插入偶数次

delimiter $
create procedure test_while3(in insertCount int)
begin
		declare i int default 0;
		a:while i<=insertCount Do
				set i=i+1;
				if mod(i,2)!=0 then iterate a;
				end if;
				insert into admin(username,`password`) values(concat('you',i),'888');
		end while a;
end $

call test_while3(100);

/*

已知表stringcontent
其中字段:
id自增长
content varchar(20)

向该表插入指定个数的,随机的字符串

*/

create table stringcontent(
			id int primary key auto_increment,
			content VARCHAR(20)
)ENGINE=INNODB default CHARSET='utf8';

delimiter $
create procedure test_randstr_insert(in insertCount int)
begin

declare i int default 1;#定义一个循环变量i,表示插入次数
declare str varchar(26) default 'abcdefghijklmnopqrstuvwxyz';
declare startIndex int default 1; #代表起始索引
declare len int default 1; #代表着截取的字符的长度

			while i<=insertCount Do
					
					set len=FLOOR(RAND()*(20-startIndex+1)+1);#产生一个随机的整数,代表,截取的长度,1-(26-startIndex+1)
					set startIndex=FLOOR(RAND()*26+1);#随机数rand产生0-1之间,乘以26为0-25.多,+1表示1-26.多,向下取整得1-26
					insert into stringcontent(content) values (SUBSTR(str,startIndex,len));
					set i=i+1;#循环变量更新
			end while;

end $

drop PROCEDURE test_randstr_insert;
call test_randstr_insert(10);
truncate table stringcontent;
select * from stringcontent;
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

友培

数据皆开源!

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值