当前位置: 代码迷 >> Sql Server >> 怎么在一个存储过程中 使用另外一个存储过程返回的output类型参数值
  详细解决方案

怎么在一个存储过程中 使用另外一个存储过程返回的output类型参数值

热度:53   发布时间:2016-04-27 15:22:02.0
如何在一个存储过程中 使用另外一个存储过程返回的output类型参数值
如题!!

------解决方案--------------------
create procedure sp_test1
@count int output
as
begin
select @count=count(*) from syscolumns
end
go

create procedure sp_test2
as
begin
declare @num int
exec sp_test1 @num output

select @num
end
go

exec sp_test2
go

drop procedure sp_test1,sp_test2
go
  相关解决方案