SQL Server 2012使用存储过程将存储过程的返回值写入单元格

时间:2015-01-09 17:09:24

标签: tsql stored-procedures sql-server-2012

我在SQL Server 2012中编写了一个存储过程,它接受三个输入值,并在进行一些计算后返回一个结果(一个总和)。

DECLARE @return_value int,
        @total numeric(20, 2)

EXEC @return_value = [dbo].[storedprocedure]
                        @input1 = 'input_value',
                        @input2= 12345,
                        @input3 = 5

SELECT @total as '@total'

SELECT 'Return Value' = @return_value

返回一个值,例如

@total 1000,02  --this is the correct value which I want to use--

Return Value 1000

我在某些列中有一个表,我希望将其作为输入和空列,我希望在其中填充存储过程的@total变量的结果。

如果我没有太多错误,那么需要第二个存储过程,执行第一个遍历所有行的存储过程,并将值写入其中。

最好的方法是什么?

1 个答案:

答案 0 :(得分:0)

我不知道存储过程中的内容,但可能您可以创建一个函数。像这样:

CREATE FUNCTION [dbo].[YourFunctionName]
(
     @input1 VARCHAR(10)
    ,@input2 INT
    ,@input3 INT
)
RETURNS INT
AS
BEGIN
    -- Your code here.

    RETURN -- You return value here.
END

并像这样使用它:

UPDATE YourTable
SET YourColumn = dbo.YourFunctionName(Input1, Input2, Input3)

否则,您必须声明游标,执行存储过程并对每行执行更新。不推荐使用迭代方法有几个原因,但我认为这超出了这个问题的范围。