在 sql select 语句中 如何获取 存储过程的返回值

2024-12-05 06:20:02
推荐回答(1个)
回答1:

SQL Server中存储过程的返回值不是通过return语句返回的(return语句是在用户自定义函数中使用的),而是通过存储过程的参数来返回,在定义存储过程的参数时使用关键字output来指定此参数是返回值。

而在调用存储过程时,也必须使用关键字给接收返回值的变量,这样才能在调用时获得存储过程的返回值。

示例:

create procedure dbo.pr_add @a int, @b int, @c int output
as
    set @c = @a + @b
go

调用:

declare @v int
execute dbo.pr_add 1, 2, @v output
select @v