BIGINT标量函数

时间:2012-10-01 20:29:24

标签: tsql

如何? 创建一个返回bigint的标量函数。 该函数需要bigint的两个输入。 该函数将输入相乘并返回结果。

谢谢,

1 个答案:

答案 0 :(得分:2)

这样的事情怎么样:

CREATE FUNCTION [dbo].[testbigint]
(
    @int1 bigint,
    @int2 bigint
)
RETURNS bigint
AS
BEGIN
    -- Declare the return variable here
    DECLARE @returnVal bigint

    set @returnVal =  @int1* @int2

    -- Return the result of the function
    RETURN @returnVal

END