免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1597 | 回复: 3
打印 上一主题 下一主题

如何在一个过程中调用另一个过程返回的结果集?急!在线等! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-08-07 15:20 |只看该作者 |倒序浏览
我有一个存储过程,执行后返回一个结果,如SELECT效果,现在我想在另一个存储过程中调用它返回的结果集,请问各位大虾们如何实现,最好给个例
急急急!!!!!
在线等答案!!!!

论坛徽章:
0
2 [报告]
发表于 2005-08-08 10:21 |只看该作者

如何在一个过程中调用另一个过程返回的结果集?急!在线等!

考虑使用全局临时表?

论坛徽章:
0
3 [报告]
发表于 2005-08-08 18:10 |只看该作者

如何在一个过程中调用另一个过程返回的结果集?急!在线等!

小弟有一个问题使我总是不敢用全局临时表:
在并发式操作情况下使用全局临时表会不会导致冲突?

论坛徽章:
0
4 [报告]
发表于 2005-08-09 03:25 |只看该作者

如何在一个过程中调用另一个过程返回的结果集?急!在线等!

When both a create procedure statement and an execute statement include the output option with a parameter name, the procedure returns a value to the caller. The caller can be a SQL batch or another stored procedure. The value returned can be used in additional statements in the batch or calling procedure.

This stored procedure performs multiplication on two integers (the third integer, @result, is defined as an output parameter):

create procedure mathtutor
@mult1 int, @mult2 int, @result int output
as
select @result = @mult1 * @mult2

To use mathtutor to figure a multiplication problem, you must declare the @result variable and include it in the execute statement. Adding the output keyword to the execute statement displays the value of the return parameters.
declare @result int
exec mathtutor 5, 6, @result output
(return status = 0)
Return parameters:
-----------
30
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP