MySQL进阶——存储过程和存储函数

文章目录

    • 1、存储过程和存储函数是什么
    • 2、创建和调用存储过程
    • 3、查看和删除存储过程
    • 4、存储过程语法
      • 4.1、变量
      • 4.2、if条件判断
      • 4.3、参数传递
      • 4.4、case结构
      • 4.5、while循环
      • 4.6、repeat语句
      • 4.7、loop语句与leave语句
      • 4.8、游标
    • 5、存储函数

1、存储过程和存储函数是什么

存储过程和存储函数:

事先经过编译并存储在数据库中的一段 SQL语句的集合
调用存储过程和函数可以简化应用开发人员的很多工作
减少数据在数据库和应用服务器之间的传输
可以提高数据处理的效率

这样一来,不仅执行效率非常高,而且客户端不需要把所有的 SQL 语句通过网络发给服务器,减少了 SQL 语句暴露在网上的风险,也提高了数据查询的安全性。


存储过程和存储函数的区别:

  • 存储函数有返回值
  • 存储过程没有返回值

2、创建和调用存储过程

语法结构:

create procedure 存储过程名(参数)
begin
  # SQL语句
end;

示例:

# delimiter用来声明SQL语句的分隔符,告诉 MySQL 解释器,该段命令是否已经结束了,mysql是否可以执行了。
# 默认情况下,delimiter是分号;在命令行客户端中,如果有一行命令以分号结束,那么回车后,mysql将会执行该命令。
# delimiter $:代表每行命令以$结束,而不是分号;
delimiter $

create procedure pro_test1()
begin
	select 'Hello MySQL';
end$

调用存储过程:

# 调用存储过程需要使用关键字call
call pro_test1()$

3、查看和删除存储过程

查看存储过程:

# 查询db_name数据库中的所有的存储过程
select name from mysql.proc where db='db_name';

# 查询存储过程的状态信息
show procedure status;

# 查询某个存储过程的定义
show create procedure test.pro_test1 \G;

删除存储过程:

drop procedure 存储过程名;

4、存储过程语法

存储过程是可以编程的,意味着可以使用变量,表达式,控制结构,来完成比较复杂的功能。

4.1、变量

通过 DECLARE 可以定义一个局部变量,该变量的作用范围只能在 BEGIN…END 块中。

declare 变量名 类型 [default 默认值]

示例:

delimiter $

create procedure pro_test2()
begin
	declare num int default 5;
	select num + 10;
end$

直接赋值使用 SET,可以赋值常量或者表达式,具体语法如下:

set 变量名 =;

实例:

delimiter $

create procedure pro_test3()
begin
	declare name varchar(20);
	set name = 'MySQL';
	select name;
end$

也可以通过select … into方式进行赋值操作:

delimiter $

create procedure pro_test4()
begin
	declare countnum int;
	select count(*) into countnum from 表名;
	select countnum;
end$

4.2、if条件判断

语法结构:

if 条件 then 语句
elseif 条件 then 语句
else 语句
end if;

示例:

delimiter $

create procedure pro_test5()
begin
	declare height int default 175;
	declare description varchar(50);
	
	if height >= 180 then
		set description = '身材高挑';
	elseif height >= 170 and height < 180 then
		set description = '标准身材';
	else
		set description = '一般身材';
	end if;

	select description;
end$

4.3、参数传递

语法格式:

create procedure 存储过程名([in/out/inout] 参数名 参数类型)

IN:该参数可以作为输入,也就是需要调用方传入值,默认
OUT:该参数作为输出,也就是该参数可以作为返回值
INOUT:既可以作为输入参数,也可以作为输出参数

实例:

# 演示in
delimiter $

create procedure pro_test6(in height int)
begin
	declare description varchar(50) default '';
	if height >= 180 then
		set description = '身材高挑';
	elseif height >= 170 and height < 180 then
		set description = '标准身材';
	else 
		set description = '一般身材';
	end if;

	select concat('身高 ',height,'对应的身材类型为:',description);
end$
# 演示out
create procedure pro_test7(in height int,out description varchar(100))
begin
	if height >= 180 then
		set description = '身材高挑';
	elseif height >= 170 and height < 180 then
		set description = '标准身材';
	else
		set description = '一般身材';
	end if;
end$


# @description:这种变量要在变量名称前面加上“@”符号,叫做用户会话变量
# 代表整个会话过程它都是有作用的,类似全局变量
call pro_test7(168, @description)$
select @description$

4.4、case结构

语法结构:

case 
	when 判断条件 then 语句
	...
end case;

示例:

delimiter $

create procedure pro_test8(month int)
begin
	declare result varchar(20);
	case
		when month >= 1 and month <= 3 then
			set result = '第一季度';
		when month >= 4 and month <= 6 then
			set result = '第二季度';
		when month >= 7 and month <= 9 then
			set result = '第三季度';
		when month >= 10 and month <= 12 then
			set result = '第四季度';
	end case;
	select concat('您输入的月份为:',month,',该月份为:',result) as content;
end$

4.5、while循环

语法结构:

while 判断条件 do
	语句
end while;

示例:

delimiter $

create procedure pro_test9(n int)
begin
	declare total int default 0;
	declare num int default 1;
	while num <= n do
		set total = total + num;
		set num = num + 1;
	end while;
	select total;
end$

4.6、repeat语句

有条件的循环控制语句,当满足条件的时候退出循环
while 是满足条件才执行,repeat 是满足条件就退出循环

语法结构:

repeat
	语句
	util 判断条件
end repeat;

示例:

delimiter $

create procedure pro_test10(n int)
begin
	declare total int default 0;
	repeat 
		set total = total + n;
		set n = n - 1;
		until n = 0
	end repeat;

	select total;
end$

4.7、loop语句与leave语句

LOOP 实现简单的循环,退出循环的条件需要使用其他的语句定义,通常可以使用 LEAVE 语句实现,如果不在语句中增加退出循环的语句,那么 LOOP 语句可以用来实现简单的死循环

LEAVE用来从标注的流程构造中退出,通常和 BEGIN … END 或者循环一起使用。下面是一个使用 LOOP 和 LEAVE 的简单例子 , 退出循环:

delimiter $

create procedure pro_test11(n int)
begin
	declare total int default 0;
	ins:loop
		if n <= 0 then
			leave ins;
		end if;
		set total = total + n;
		set n = n - 1;
	end loop ins;

	select total;
end$

4.8、游标

游标是用来存储查询结果集的数据类型,在存储过程和函数中可以使用游标对结果集进行循环的处理。

游标的使用包括光标的声明、OPEN、FETCH 和 CLOSE

声明游标:

declare 游标名 cursor for select语句

open游标:

open 游标名

fetch游标:

fetch 游标名 into 字段名

close游标:

close 游标名

示例:

# 初始化脚本
create table emp(
  id int(11) not null auto_increment ,
  name varchar(50) not null comment '姓名',
  age int(11) comment '年龄',
  salary int(11) comment '薪水',
  primary key(`id`)
)engine=innodb default charset=utf8 ;

insert into emp(id,name,age,salary) values(null,'金毛狮王',55,3800),(null,'白眉鹰王',60,4000),(null,'青翼蝠王',38,2800),(null,'紫衫龙王',42,1800);


# 查询emp表中数据, 获取游标中的数据
delimiter $

create procedure pro_test12()
begin
  declare e_id int(11);
  declare e_name varchar(50);
  declare e_age int(11);
  declare e_salary int(11);
  declare emp_result cursor for select * from emp;
  
  open emp_result;
  	
  fetch emp_result into e_id,e_name,e_age,e_salary;
  select concat('id=',e_id , ', name=',e_name, ', age=', e_age, ', 薪资为: ',e_salary);
  
  fetch emp_result into e_id,e_name,e_age,e_salary;
  select concat('id=',e_id , ', name=',e_name, ', age=', e_age, ', 薪资为: ',e_salary);

  fetch emp_result into e_id,e_name,e_age,e_salary;
  select concat('id=',e_id , ', name=',e_name, ', age=', e_age, ', 薪资为: ',e_salary);

  fetch emp_result into e_id,e_name,e_age,e_salary;
  select concat('id=',e_id , ', name=',e_name, ', age=', e_age, ', 薪资为: ',e_salary);
  
  close emp_result;
end$

===============================================================

# 上述方式优化:通过循环结构,获取游标中的数据
delimiter $

create procedure pro_test13()
begin
  DECLARE id int(11);
  DECLARE name varchar(50);
  DECLARE age int(11);
  DECLARE salary int(11);
  DECLARE has_data int default 1;
  
  DECLARE emp_result CURSOR FOR select * from emp;
  # 当抓取不到数据的时候,将has_data赋值为0并且退出当前程序(必须声明在游标之后)
  DECLARE EXIT HANDLER FOR NOT FOUND set has_data = 0;
  
  open emp_result;
  
  repeat
    fetch emp_result into id , name , age , salary;
    select concat('id为',id, ', name 为' ,name , ', age为 ' ,age , ', 薪水为: ', salary);
    until has_data = 0
  end repeat;
  
  close emp_result;
end$

5、存储函数

语法结构:

create function 函数名(参数 参数类型)
returns 参数类型
begin
	...
end;

示例:

# 引入sql脚本
CREATE TABLE `city` (
  `city_id` int(11) NOT NULL AUTO_INCREMENT,
  `city_name` varchar(50) NOT NULL,
  `country_id` int(11) NOT NULL,
  PRIMARY KEY (`city_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

=========================================================================

delimiter $

create function count_city(countryId int)
returns int
begin
	declare cnum int;

	select count(*) into cnum from city where country_id = countryId;

	return cnum;
end$

调用:

select count_city(1);
select count_city(2);

你可能感兴趣的:(MySQL,mysql,存储过程,存储函数,数据库,procedure)