MySQL 错误 1415
我目前正在 MySQL 上进行一些编码并得到一个函数。 对我来说,代码看起来不错,但 MySQL 抛出
错误代码:1415 不允许从函数返回结果集 错误。
正如我所说,我没有看到其中有任何语法错误,而且根本无法理解为什么它会抛出异常一个错误。但只有在执行时,才不会出现任何问题。
我已经用谷歌搜索过,但没有找到任何对我有帮助的东西,所以我希望你能。 谢谢指教。
I'm currently coding somewhat on MySQL and got a FUNCTION.
For me the code looks fine, but MySQL throws a
Error Code: 1415
Not allowed to return a result set from a function
Error.
Function:
Cick here, pastebin.com
As i said, i dont see any syntax error in it and simply cant understand why its throwing an Error. Only on execution though, creates without any problems.
I googled already, and haven't found anything helping my on this, so i hope you can.
Thanks in advice.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我用 ROUND(RAND()) 替换了新函数中引用的所有其他函数,并且运行良好;这些函数之一可能会尝试返回结果集吗?
I replaced all the other functions referenced in your new function with ROUND(RAND()) and it ran fine; Could it be that one of those functions might be trying to return a result set?