如何? 创建一个返回bigint的标量函数。 该函数需要bigint的两个输入。 该函数将输入相乘并返回结果。
谢谢,
答案 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