SQL编写自定义函数

-- 通过一个子级ID 返回一级分类名称
alter function calcclass
(@dclassid as int)
returns varchar(50)
as
begin
-- 通过一个子级ID 返回一级分类名称
-- 返回ID 和父级分类ID 直到父级分类ID=0
declare @cid int
declare @cfatherid int
set @cid=@dclassid
while (@cid>0)
select @cfatherid=cid,@cid=cfatherid from trd_archivesclass where cid=@cid
return (select cname from trd_archivesclass where cid=@cfatherid)
end

SQL编写自定义函数,布布扣,bubuko.com

SQL编写自定义函数

上一篇:自动化测试 - 文件上传之Win32API - Ruby版


下一篇:如何开启Mysql远程访问