mysql 存储过程

1.存储过程
in模式

可以直接运行;也可以直接Call sp_Name(22)

out
必须
Call sp_Name(@变量名称);
select @变量名称;



inout 模式;
set @aa = 9;
CALL zzzz(@aa);
SELECT @aa

2.函数 肯定会有返回值
in
set @Pram = 2;
SELECT aaa(@Pram);

posted @ 2016-10-17 18:07  maanshancss  阅读(130)  评论(0编辑  收藏  举报