1、错误叙述性说明

16:27:36	call new_procedure(20150112,1)	
Error Code: 1414. OUT or INOUT argument 2 for routine company.new_procedure is not a variable or NEW pseudo-variable in BEFORE trigger0.063 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,1);

3、解决的方法

call new_procedure(20150112,@depart_id);

    out參数是数据库表中的字段

select @depart_id as depart_id_out;


版权声明:本文博主原创文章。博客,未经同意不得转载。

相关文章:

  • 2021-10-17
  • 2021-06-08
  • 2021-03-31
  • 2021-11-11
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-03
  • 2021-08-13
相关资源
相似解决方案