怎样sql中创建一个自定义函数,实现两个整数相加,并返回其和值
2个回答
展开全部
create function Add(@num_a int ,@num_b int) returns bigint
begin
declare @countTotal bigint
set @countTotal = (@num_a + @num_b
return @countTotal
end
begin
declare @countTotal bigint
set @countTotal = (@num_a + @num_b
return @countTotal
end
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询