Error Code 1318 Incorrect number of arguments for PROCEDUR
Posted odejsjhshw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Error Code 1318 Incorrect number of arguments for PROCEDUR相关的知识,希望对你有一定的参考价值。
1、错误描述
13:58:20 call new_procedure(‘2000‘,‘zhangsan‘) Error Code: 1318. Incorrect number of arguments for PROCEDURE student.new_procedure; expected 0, got 2 0.000 sec
2、错误原因
CREATE DEFINER=`root`@`localhost` PROCEDURE `new_procedure`()
BEGIN
set @a=101;
while @a<2000 do
set @b = rand_string(10);
set @c=1;
insert into example1 values(@a,@b,@c);
set @[email protected]+1;
if(@a%2=0)
then
set @c=0;
end if;
end while;
END
该存储过程没有用到参数,故调用时不需要加参数
3、解决办法
call new_procedure;
再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow
以上是关于Error Code 1318 Incorrect number of arguments for PROCEDUR的主要内容,如果未能解决你的问题,请参考以下文章
Error code: 205 System Error(-1)
是否可以将 boost::system::error_code 转换为 std:error_code?
MySQL state [HY000]; error code [1364];