开发环境:Navicat For Mysql
第一个例子,带(输出参数)返回值的存储过程:
1、建表
create table abin5(
id int,
name5 VARCHAR(39)
)
2、创建存储过程
create procedure pabin5(out n int)
BEGIN
select count(*) from abin5;
END
3、测试存储过程
call pabin5(@n)
第二个例子,带输入参数的存储过程:
1、建立存储过程
create procedure pabin6(in n int)
BEGIN
SELECT * FROM abin5 where id=n;
END
2、测试存储过程
SET @n=1;
CALL pabin6(@n)