Error Code: 1318. Incorrect number of arguments for PROCEDURE company.new_procedure; expected 2, got

来源:互联网 发布:中国知乎 编辑:程序博客网 时间:2024/06/04 18:19

1、错误描述

20:27:34call new_procedure(20150112)Error Code: 1318. Incorrect number of arguments for PROCEDURE company.new_procedure; expected 2, got 10.000 sec

1 queries executed, 0 success, 1 errors, 0 warnings查询:call query_student()错误代码: 1318Incorrect 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);

1 0