查询中的存储过程
有一个过程GetFileList - 顾名思义,返回一个文件列表和更多选项。
那么是否可以在查询选择中使用此过程?
像这样的事情:select Field1 from Image where Field2 IN (call GetFileList ());
There is a procedure GetFileList - returns, as the name implies, a list of files and a couple more options with them.
Is it possible then to use this procedure in the query select?
Something like this: select Field1 from Image where Field2 IN (call GetFileList ());
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你应该把它改成一个函数
http://www.databasejournal.com/features /mysql/article.php/3569846/MySQL-Stored-Functions.htm
you should change it to a function
http://www.databasejournal.com/features/mysql/article.php/3569846/MySQL-Stored-Functions.htm