Mysql带返回值与不带返回值的2种存储过程写法

时间:2022-11-06 19:21:55

过程1:带返回值:

?
1
2
3
4
5
drop procedure if exists proc_addNum;
create procedure proc_addNum (in x int,in y int,out sum int)
BEGIN
SET sum= x + y;
end

然后,执行过程,out输出返回值:

?
1
2
call proc_addNum(2,3,@sum);
select @sum;

过程2:不带返回值:

?
1
2
3
4
5
6
7
drop procedure if exists proc_addNum;
create procedure proc_addNum (in x int,in y int)
BEGIN
DECLARE sum int;
SET sum= x + y;
SELECT sum;
end

执行过程:

?
1
call proc_addNum(2,3);

总结

以上所述是小编给大家介绍的Mysql带返回值与不带返回值的2种存储过程写法,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!