mssql 存储过程调用另一个存储过程中的结果的方法分享

Posted lonelyxmas

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mssql 存储过程调用另一个存储过程中的结果的方法分享相关的知识,希望对你有一定的参考价值。

原文:mssql 存储过程调用另一个存储过程中的结果的方法分享

转自:http://www.maomao365.com/?p=6801

摘要:
下文将分享"一个存储过程"中如何调用"另一个存储过程的返回结果",并应用到自身的运算中



在实际开发中,我们经常会遇到在一个存储过程中调用另一个存储过程的返回结果(存储过程相互应用),
实现思路:主要采用临时表将存储过程返回的结果集进行存储,然后供另一个存储过程应用。
如下所示:

create proc pr_b 
@a int,@b int
as
begin
select @a as a @b as b 
union all 
select @a+1 as a @b+1 as b 
end
go

-----创建存储过程pr_a,并调用存储过程pr_b的返回结果
create proc pr_a 
as
begin
create table #t (a int,b int) 
insert into #t (a,b)
exec pr_b 120,188

select * from #t

truncate table #t
drop table #t
end
go 

 

以上是关于mssql 存储过程调用另一个存储过程中的结果的方法分享的主要内容,如果未能解决你的问题,请参考以下文章

oracel 通过dblink 调用mssql 存储过程

PHP调用MsSQL Server 2012存储过程获取多结果集(包含output参数)

从 Laravel 4 中的 MSSQL 存储过程读取多个结果集

MySQL 从另一个存储过程调用存储过程

使用 SQL Server 2012 中的 MSSQL_Query 的 PHP 调用存储过程返回无效值

调用另一个存储过程后从存储过程返回错误结果