MySQL存储过程概念、原理与常见⽤法详解
本⽂实例讲述了MySQL存储过程概念、原理与常见⽤法。分享给⼤家供⼤家参考,具体如下:
1、存储过程的概念
在⼀些语⾔中,如pascal,有⼀个概念叫“过程”procedure,和“函数”function,在php中,没有过程,只有函数。
过程:封装了若⼲条语句,调⽤时,这些封装体执⾏
函数:是⼀个有返回值的“过程”
总结:过程是⼀个没有返回值的函数
在MySQL中:
我们把若⼲条sql封装起来,起个名字 —— 过程
把此过程存储在数据库中 —— 存储过程
2、创建存储过程
create procedure procedureName()
begin
//--sql 语句
end$
3、查看已有的存储过程
show procedure status
4、删除存储过程
drop procedure procedureName;
5、调⽤存储过程
call procedureName();
bootstrap怎么运行6、第⼀个存储过程
注意:我这⾥已经将MySQL的结束标识符改为$,如果要知道怎么设置为$,请参考我的另⼀篇⽂章:MySQL触发器。create procedure p1()
begin
select 2+3;
end$
调⽤:
call p1();
显⽰结果:
中国足彩网竞彩推荐7、引⼊变量
存储过程是可以编程的,意味着可以使⽤变量,表达式,控制结构来完成复杂的功能,在存储过程中,⽤declare声明变量:declare 变量名变量类型 [default 默认值]
使⽤:
create procedure p2()
begin
declare age int default 18;
declare height int default 180;
select concat('年龄:',age,'⾝⾼:',height);
end$
显⽰结果:
8、引⼊表达式
存储过程中,变量可以在sql语句中进⾏合法的运算,如+-*/。变量的赋值形式:
set 变量名:= expression
使⽤:
create procedure p3()
begin
declare age int default 18;
set age := age + 20;
select concat('20年后年龄:',age); end$
显⽰结果:
9、引⼊选择控制结构
格式:
if condition then
statement
elseif
statement
else
statement
end if;
使⽤:
create procedure p4()
begin
declare age int default 18;
if age >= 18 then
select '已成年';
else
select '未成年';
end if;
end$
显⽰结果:
10、给存储过程传参
在定义存储过程的括号中,可以声明参数,语法:[in/out/inout] 参数名参数类型
使⽤:
create procedure p5(width int,height int)
begin
select concat('你的⾯积是:',width * height) as area;
if width > height then
select '你⽐较胖';
elseif width < height then
select '你⽐较瘦';
plsql如何配置环境变量else
select '你⽐较⽅';
end if;
end$
显⽰结果:
11、使⽤while循环结构
需求:从1加到100
mysql查看所有存储过程>pycharm激活码如何使用使⽤:
create procedure p6()
begin
declare total int default 0;
declare num int default 0;
while num <= 100 do
set total := total + num;
set num := num + 1;
end while;
select total;
end$
显⽰结果:
12、存储过程参数的输⼊输出类型
主要有in、out、inout三种类型
需求:从1加到N
输⼊型的数据是我们给出值,输出型是我们给出变量名,⽤于乘装输出的变量值。(1)in型,此时in为输⼊⾏参数,它能接受到我们的输⼊
create procedure p7(in n int)
begin
declare total int default 0;
异步注解asyncdeclare num int default 0;
while num <= n do
set total := total + num;
set num := num + 1;
end while;
select total;
end$
调⽤:
call p7(100);
输出结果:
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论