Sybase 开放查询?
sybase中是否存在开放查询?或者更一般地说,在 sybase 中,在过程结果中进行选择的可能方法是什么(临时表、输出参数、其他??)
Does open query exist in sybase ? Or more generally, in sybase, what are the possible way to select among the result of a procedure (temporary tables, out params, others ??)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过在“Create procedure MyStoredProcedure...”命令中的参数后面添加关键字“output”来指定存储过程的输出参数。
临时表当然存在,无论是本地的还是全局的。
Sybase IQ 下的 T-SQL 您还可以从存储过程中进行选择,这样,假设您的过程名为“MyStoredProcedure”
最后您还可以创建派生表(至少在 Sybase IQ 中有效),这样与您的存储连接程序结果
You can specify output parameters for a stored procedure by adding the keyword "output" after the parameter in the "Create Procedure MyStoredProcedure..." command.
Temp Tables of course exist, local or Global.
T-SQL under Sybase IQ you can also select from a stored procedure so something like this, assume your procedure is called "MyStoredProcedure"
Finally you can also create derived tables (at least it works in Sybase IQ) like this to join with your stored procedure results