1、错误描述
16:27:36 call new_procedure(20150112,1)
Error Code: 1414. OUT or INOUT argument 2 for routine company.new_procedure is not a variable or NEW pseudo-variable in BEFORE trigger0.063 sec
2、错误原因
CREATE DEFINER=`root`@`localhost` PROCEDURE `new_procedure`(in `departId` int,out `num` int)
BEGIN
select count(t.depart_name) into num from t_department_info t where t.depart_id = departId;
END
call new_procedure(20150112,1);
3、解决办法
call new_procedure(20150112,@depart_id);
out参数是数据库表中的字段
select @depart_id as depart_id_out;
本文详细解析了MySQL存储过程中关于参数传递的问题,包括错误描述、原因分析及解决办法,通过实例展示了如何正确地使用存储过程的输入输出参数。
5万+

被折叠的 条评论
为什么被折叠?



