我在phpmyadmin中创建了几个存储过程,如何使用sql查询调用它们?
我在 phpmyadmin 中创建了几个存储过程,如何使用 sql 查询(mysql)调用它们?
I created several stored procedures in phpmyadmin, how is it possible to call them using an sql query (mysql) ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在“SQL”选项卡上尝试此操作:
然后调用:
Try this on the 'SQL' tab:
Then call:
上面的例子确实有效,除了拼写错误 - 应该是:
只是错过了 CALL 中过程名称的“存储”前缀
the above example does work except for typo - should be:
just missed the "stored" prefix of the procedure name off the the CALL's
据我所知 phpmyadmin 不支持这个。
As far as I know phpmyadmin doesn't support this.