想要在shell脚本中执行MYSQL存储过程
示例:Employee_config ('ClientId','Data')是 mysql 中的过程名称。
当我尝试输入如下所示的 shell 脚本时
CALL Employee_config ('ClientId','Data') we are getting CALL: command not found
EXECUTE Employee_config ('ClientId','Data') we are getting EXECUTE: command not found
Run Code Online (Sandbox Code Playgroud)
如果有人可以更新如何从 shell 脚本调用 MySQL 存储过程,那就太好了。