sql-server-2008 – set @var = exec stored_procedure

前端之家收集整理的这篇文章主要介绍了sql-server-2008 – set @var = exec stored_procedure前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以在变量中分配从exec存储过程返回的值?

就像是

DECLARE @count int
SET @count = Execute dbo.usp_GetCount @Id=123

解决方法

您可以使用sp_executesql而不是exec将其分配给标量输出参数
DECLARE @out int

EXEC sp_executesql N'select @out_param=10',N'@out_param int OUTPUT',@out_param=@out OUTPUT

SELECT @out

对于exec,我只知道如何使用表变量来做

declare @out table
(
out int
)

insert into @out
exec('select 10')

select * 
from @out

对于存储过程,还可以使用输出参数或返回码.后者可以仅返回单个整数,通常优选返回错误代码而不是数据.两种技术如下所示.

create proc #foo 
@out int output
as
set @out = 100
return 99

go

declare @out int,@return int

exec @return = #foo @out output

select @return as [@return],@out as [@out]

drop proc #foo
原文链接:https://www.f2er.com/mssql/81618.html

猜你在找的MsSQL相关文章