Mysql带返回值与不带返回值的2种存储过程写法
更新时间:2017年10月07日 10:16:01 投稿:mrr
这篇文章主要介绍了Mysql带返回值与不带返回值的2种存储过程写法,需要的朋友可以参考下
过程1:带返回值:
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输出返回值:
call proc_addNum(2,3,@sum); select @sum;
过程2:不带返回值:
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
执行过程:
call proc_addNum(2,3);
总结
以上所述是小编给大家介绍的Mysql带返回值与不带返回值的2种存储过程写法,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的!
相关文章
PhpMyAdmin 配置文件现在需要一个短语密码的解决方法
本文主要介绍PhpMyAdmin 配置文件现在需要一个短语密码的解决方法,比较实用,希望能给大家做一个参考。2016-06-06解决mysql报错:1264-Out of range value for&nb
这篇文章主要介绍了解决mysql报错:1264-Out of range value for column ‘字段‘ at row 1问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教2023-11-11
最新评论