执行存储过程时,出现如下错误,一般都是因为调用用户没有对应操作权限导致.
Parameter number 1 is not an OUT parameter
检查用户对应权限
show grants for [email protected]
%
;
如果没有对应 execute,alter routine,create routine权限,请root用户登录进行授权操作.
授权:
grants execute ,alter routine,create routine to [email protected]
%
;
flush privileges;
原文地址:https://blog.51cto.com/8026776/2447824
时间: 2024-10-06 22:35:45