1、错误叙述性说明
20:27:34 call new_procedure(20150112) Error Code: 1318. Incorrect number of arguments for PROCEDURE company.new_procedure; expected 2, got 1 0.000 sec
1 queries executed, 0 success, 1 errors, 0 warnings 查询:call query_student() 错误代码: 1318 Incorrect number of arguments for PROCEDURE test.query_student; expected 1, got 0 运行耗时 : 0 sec 传送时间 : 0 sec 总耗时 : 0 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);
在调用存储过程中,须要传入两个參数,可是仅仅传了一个參数
3、解决的方法
call new_procedure(20150112,@num);
版权声明:本文博主原创文章。博客,未经同意不得转载。