当前位置: 代码迷 >> 综合 >> Error Code: 1318. Incorrect number of arguments for PROCEDURE account_check.temp_i; expected 1, got
  详细解决方案

Error Code: 1318. Incorrect number of arguments for PROCEDURE account_check.temp_i; expected 1, got

热度:11   发布时间:2023-12-22 03:36:34.0

1、错误描述

1 queries executed, 0 success, 1 errors, 0 warnings查询:CALL temp_i错误代码: 1318 Incorrect number of arguments for PROCEDURE account_check.temp_i; expected 1, got 0执行耗时   : 0 sec
传送时间   : 0 sec
总耗时      : 0.009 sec

2、错误原因

  • expected 1, got 0:

    • expected 1:即需要1个参数;
    • got 0 :没传递参数
  • 存储过程如下,说明需要8位数字字符串参数

这里写图片描述

3、解决方法

# 更改命令为
CALL temp_i('20180515');

?

  相关解决方案