您好,欢迎访问一九零五行业门户网

MYSQL 存储过程调用存储过程解决方案

mysql 存储过程调用存储过程
p1
create procedure p1(in hid int(8))
bengin
..
end
p2
create procedure p2(in hid int(8))
bengin
exec p1(hid);
..
end
为什么提示exec p1(hid); 有错呢
------解决方案--------------------
hid传递的参数看是否为int型
其它类似信息

推荐信息