MySQL高级-02:存储过程和函数_触发器
一、存储过程和函数
存储过程和函数是 事先经过编译并存储在数据库中的一段 SQL 语句的集合,调用存储过程和函数可以简化应用开发人员的很多工作,减少数据在数据库和应用服务器之间的传输,对于提高数据处理的效率是有好处的。
存储过程和函数的区别在于函数必须有返回值,而存储过程没有。
函数 : 是一个有返回值的过程 ;
过程 : 是一个没有返回值的函数 ;
1、创建存储过程
语法:
CREATE PROCEDURE procedure_name ([proc_parameter[,...]])
begin
-- SQL语句
end ;
知识小贴士
delimiter:
该关键字用来声明SQL语句的分隔符 , 告诉 MySQL 解释器,该段命令是否已经结束了,
mysql是否可以执行了。默认情况下,delimiter是分号;。在命令行客户端中,
如果有一行命令以分号结束,那么回车后,mysql将会执行该命令。
2、调用存储过程
call procedure_name() ;
3、查看存储过程
-- 查询db_name数据库中的所有的存储过程
select name from mysql.proc where db='db_name';
-- 查询存储过程的状态信息
show procedure status;
-- 查询某个存储过程的定义
show create procedure test.pro_test1 \G;
4、删除存储过程
DROP PROCEDURE [IF EXISTS] sp_name ;
5、语法
存储过程是可以编程的,意味着可以使用变量,表达式,控制结构 , 来完成比较复杂的功能。
1. 变量
- DECLARE
通过 DECLARE 可以定义一个局部变量,该变量的作用范围只能在 BEGIN…END 块中。
DECLARE var_name[,...] type [DEFAULT value]
- SET
直接赋值使用 SET,可以赋常量或者赋表达式,具体语法如下:
SET var_name = expr [, var_name = expr] ...
也可以通过select … into 方式进行赋值操作 :
2. if条件判断
语法结构 :
if search_condition then statement_list
[elseif search_condition then statement_list] ...
[else statement_list]
end if;
示例:
mysql> create procedure pro_test6()
-> 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$
mysql> call pro_test6$
+--------------+
| description |
+--------------+
| 标准身材 |
+--------------+
3. 传递参数
语法格式 :
create procedure procedure_name([in/out/inout] 参数名 参数类型)
...
IN : 该参数可以作为输入,也就是需要调用方传入值 , 默认
OUT: 该参数作为输出,也就是该参数可以作为返回值
INOUT: 既可以作为输入参数,也可以作为输出参数
输入参数示例:根据定义的身高变量,判定当前身高的所属的身材类型
mysql> create procedure pro_test5(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$
mysql> call pro_test5(180)$
+---------------------------------------------------------------------+
| concat('身高 ', height , '对应的身材类型为:',description) |
+---------------------------------------------------------------------+
| 身高 180对应的身材类型为:身材高挑 |
+---------------------------------------------------------------------+
输出参数示例:根据传入的身高变量,获取当前身高的所属的身材类型
<!--输出结果存储在description变量中-->
mysql> create procedure pro_test6(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$
<!aaa@qq.com代表定义一个用户变量-->
mysql> call pro_test6(180,@description)$
mysql> select @description$
+--------------+
| @description |
+--------------+
| 身材高挑 |
+--------------+
1 row in set (0.00 sec)
小知识
@description : 这种变量要在变量名称前面加上“@”符号,叫做用户会话变量,代表整个会话过程他都是有作用的,这个类似于全局变量一样。
@@global.sort_buffer_size : 这种在变量前加上 “@@” 符号, 叫做 系统变量
4. case结构
语法结构 :
方式一 :
CASE case_value
WHEN when_value THEN statement_list
[WHEN when_value THEN statement_list] ...
[ELSE statement_list]
END CASE;
方式二 :
CASE
WHEN search_condition THEN statement_list
[WHEN search_condition THEN statement_list] ...
[ELSE statement_list]
END CASE;
示例:给定一个月份, 然后计算出所在的季度
mysql> create procedure pro_test9(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$
mysql> call pro_test9(9)$
+--------------------------------------------------------+
| content |
+--------------------------------------------------------+
| 您输入的月份为 :9 , 该月份为 : 第三季度 |
+--------------------------------------------------------+
5. while循环
语法结构:
while search_condition do
statement_list
end while;
示例:计算从1加到n的值
<!--首先定义两个变量,并指定默认值-->
mysql> create procedure pro_test8(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$
mysql> call pro_test8(2)$
+-------+
| total |
+-------+
| 3 |
+-------+
6. repeat循环
有条件的循环控制语句, 当满足条件的时候退出循环 。while 是满足条件才执行,repeat 是满足条件就退出循环。
语法结构 :
REPEAT
statement_list
UNTIL search_condition
END REPEAT;
示例:计算从1加到n的值
mysql> 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$
mysql> call pro_test10(100)$
+-------+
| total |
+-------+
| 5050 |
+-------+
7、loop语句:
LOOP 实现简单的循环,退出循环的条件需要使用其他的语句定义,通常可以使用 LEAVE 语句实现,具体语法如下:
[begin_label:] LOOP
statement_list
END LOOP [end_label]
如果不在 statement_list 中增加退出循环的语句,那么 LOOP 语句可以用来实现简单的死循环。
8、leave语句:
用来从标注的流程构造中退出,通常和 BEGIN … END 或者循环一起使用。下面是一个使用 LOOP 和 LEAVE 的简单例子 , 退出循环:
mysql> 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$
mysql> call pro_test10(4)$
+-------+
| total |
+-------+
| 10 |
+-------+
6、存储函数
语法结构:
CREATE FUNCTION function_name([param type ... ])
RETURNS type
BEGIN
...
END;
案例:定义一个存储过程, 请求满足条件的总记录数 ;
mysql> 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$
mysql> select count_city(2)$
+---------------+
| count_city(2) |
+---------------+
| 1 |
+---------------+
1 row in set (0.01 sec)
二、触发器
1、介绍
触发器是与表有关的数据库对象,指在 insert/update/delete 之前或之后,触发并执行触发器中定义的SQL语句集合。触发器的这种特性可以协助应用在数据库端确保数据的完整性 , 日志记录 , 数据校验等操作 。
使用别名 OLD 和 NEW 来引用触发器中发生变化的记录内容,这与其他的数据库是相似的。现在触发器还只支持行级触发,不支持语句级触发。
2、创建触发器
语法结构 :
create trigger trigger_name
before/after insert/update/delete
on tbl_name
[ for each row ] -- 行级触发器
begin
trigger_stmt ;
end;
示例:通过触发器记录 emp 表的数据变更日志 , 包含增加, 修改 , 删除 ;
首先创建表:
mysql> 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);
-> $
mysql> create table emp_logs(
-> id int(11) not null auto_increment,
-> operation varchar(20) not null comment '操作类型, insert/update/delete',
-> operate_time datetime not null comment '操作时间',
-> operate_id int(11) not null comment '操作表的ID',
-> operate_params varchar(500) comment '操作参数',
-> primary key(`id`)
-> )engine=innodb default charset=utf8;
-> $
mysql> select * from emp$
+----+--------------+------+--------+
| id | name | age | salary |
+----+--------------+------+--------+
| 1 | 金毛狮王 | 55 | 3800 |
| 2 | 白眉鹰王 | 60 | 4000 |
| 3 | 青翼蝠王 | 38 | 2800 |
| 4 | 紫衫龙王 | 42 | 1800 |
+----+--------------+------+--------+
mysql> select * from emp_logs$
Empty set (0.01 sec)
创建 insert 型触发器,完成插入数据时的日志记录 :
mysql> create trigger emp_logs_insert_trigger
-> after insert
-> on emp
-> for each row
-> begin
-> insert into emp_logs (id,operation,operate_time,operate_id,operate_params) values(null,'insert',now(),new.id,concat('插入后(id:',new.id,', name:',new.name,', age:',new.age,', salary:',new.salary,')'));
-> end $
创建delete 行的触发器 , 完成删除数据时的日志记录 :
mysql> create trigger emp_logs_delete_trigger
-> after delete
-> on emp
-> for each row
-> begin
-> insert into emp_logs (id,operation,operate_time,operate_id,operate_params) values(null,'delete',now(),old.id,concat('删除前(id:',old.id,', name:',old.name,', age:',old.age,', salary:',old.salary,')'));
-> end $
测试:
mysql> delete from emp where id = 4$
mysql> update emp set age = 39 where id = 3$
mysql> insert into emp(id,name,age,salary) values(null, '光明左使',30,3500);$
mysql> select * from emp_logs$
+----+-----------+---------------------+------------+----------------------------------------------------------------------------------------------------------------+
| id | operation | operate_time | operate_id | operate_params |
+----+-----------+---------------------+------------+----------------------------------------------------------------------------------------------------------------+
| 1 | update | 2020-03-23 21:31:31 | 3 | 修改前(id:3, name:青翼蝠王, age:38, salary:2800) , 修改后(id3name:青翼蝠王, age:39, salary:2800) |
| 2 | delete | 2020-03-23 21:36:03 | 4 | 删除前(id:4, name:紫衫龙王, age:42, salary:1800) |
| 3 | insert | 2020-03-23 21:36:31 | 5 | 插入后(id:5, name:光明左使, age:30, salary:3500) |
+----+-----------+---------------------+------------+----------------------------------------------------------------------------------------------------------------+
2、查看触发器
可以通过执行 SHOW TRIGGERS 命令查看触发器的状态、语法等信息。
show triggers;
示例:
mysql> show triggers\G$
*************************** 1. row ***************************
Trigger: emp_logs_insert_trigger
Event: INSERT
Table: emp
Statement: begin
insert into emp_logs (id,operation,operate_time,operate_id,operate_params) values(null,'insert',now(),new.id,concat('插入后(id:',new.id,', name:',new.name,', age:',new.age,', salary:',new.salary,')'));
end
Timing: AFTER
Created: NULL
sql_mode: STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION
Definer: root@localhost
character_set_client: utf8
collation_connection: utf8_general_ci
Database Collation: utf8mb4_general_ci
*************************** 2. row ***************************
Trigger: emp_logs_update_trigger
Event: UPDATE
Table: emp
Statement: begin
insert into emp_logs (id,operation,operate_time,operate_id,operate_params) values(null,'update',now(),new.id,concat('修改前(id:',old.id,', name:',old.name,', age:',old.age,', salary:',old.salary,') , 修改后(id',new.id, 'name:',new.name,', age:',new.age,', salary:',new.salary,')'));
end
Timing: AFTER
Created: NULL
sql_mode: STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION
Definer: root@localhost
character_set_client: utf8
collation_connection: utf8_general_ci
Database Collation: utf8mb4_general_ci
*************************** 3. row ***************************
Trigger: emp_logs_delete_trigger
Event: DELETE
Table: emp
Statement: begin
insert into emp_logs (id,operation,operate_time,operate_id,operate_params) values(null,'delete',now(),old.id,concat('删除前(id:',old.id,', name:',old.name,', age:',old.age,', salary:',old.salary,')'));
end
Timing: AFTER
Created: NULL
sql_mode: STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION
Definer: root@localhost
character_set_client: utf8
collation_connection: utf8_general_ci
Database Collation: utf8mb4_general_ci
3、删除触发器
语法结构:
drop trigger [schema_name.]trigger_name
如果没有指定 schema_name,默认为当前数据库 。
mysql> drop trigger emp_logs_delete_trigger$
mysql> drop trigger emp_logs_insert_trigger$
mysql> show triggers\G$
*************************** 1. row ***************************
Trigger: emp_logs_update_trigger
Event: UPDATE
Table: emp
Statement: begin
insert into emp_logs (id,operation,operate_time,operate_id,operate_params) values(null,'update',now(),new.id,concat('修改前(id:',old.id,', name:',old.name,', age:',old.age,', salary:',old.salary,') , 修改后(id',new.id, 'name:',new.name,', age:',new.age,', salary:',new.salary,')'));
end
Timing: AFTER
Created: NULL
sql_mode: STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION
Definer: root@localhost
character_set_client: utf8
collation_connection: utf8_general_ci
Database Collation: utf8mb4_general_ci