首页 > 开发 > 综合 > 正文

SQL取得最大排序数字并累加1的自定义函数

2024-07-21 02:08:03
字体:
来源:转载
供稿:网友

/**********************************************************************
函数名:getmaxsqrt(@sqrttype)
参数:@sqrttype定义取值的表
    @maxsqrtid:返回max(sqrt)+1
返回 数字
power by adpost
email:[email protected]
**********************************************************************/
create function getmaxsqrt(@sqrttype as int)
returns int
with encryption
as
begin
 declare @maxsqrtid as int
 if(@sqrttype=1)
 begin
  select @maxsqrtid = max(categorysqrt) from lxbiz_category
 end
 if(@sqrttype=2)
 begin
  select @maxsqrtid = max(subclasssqrt) from lxbiz_subclass
 end
 if(@maxsqrtid is null)
 begin
  select @maxsqrtid = 0
 end
 return @maxsqrtid+1
end

 
  • 本文来源于网页设计爱好者web开发社区http://www.html.org.cn收集整理,欢迎访问。
  • 发表评论 共有条评论
    用户名: 密码:
    验证码: 匿名发表