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

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);

原文地址:https://www.cnblogs.com/hzcya1995/p/13314501.html