您的位置:首页 > 编程语言 > Go语言

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

2015-10-05 09:31 573 查看
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);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: