首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

请教这里的@lev变量具体作用是什么,and b.lev=@lev-1不要这句不行吗

2012-05-08 
请问这里的@lev变量具体作用是什么,and b.lev@lev-1不要这句不行吗SQL code--bom结构,查找节点下所有子节

请问这里的@lev变量具体作用是什么,and b.lev=@lev-1不要这句不行吗

SQL code
--bom结构,查找节点下所有子节点:create table os(id int,parentid int,desn varchar(10))insert into os select 1,0,'体育用品'insert into os select 2,0,'户外运动'insert into os select 3,1,'篮球'insert into os select 4,1,'足球'insert into os select 5,2,'帐篷'insert into os select 6,2,'登山鞋'insert into os select 7,0,'男士用品'insert into os select 8,7,'刮胡刀'insert into os select 9,3,'大号篮球'--求个节点下所有子节点:create function f_cid(@id int)returns varchar(500)asbegin     declare @t table(id int,parentid int,desn varchar(10),lev int)     declare @lev int     set @lev=1     insert into @t select *,@lev from  os where id=@id     while(@@rowcount>0)     begin          set @lev=@lev+1          insert into @t select a.*,@lev from os a,@t b          where a.parentid=b.id and b.lev=@lev-1     end     declare @cids varchar(500)     select @cids=isnull(@cids+',','')+ltrim(id) from @t order by lev     return @cidsendgo--调用函数select *,ids=dbo.f_cid(id) from os


[解决办法]
and b.lev=@lev-1不要这句不行
会造成重复计算,结果有问题

[解决办法]
1.这到底是一种什么查询
松散的join查询?
根据ID相等的内连接,和INNER JOIN一样。
2.b.lev=@lev-1不要这句不行?
和上面的set @lev=@lev+1配合相当于是在构建树的层级结构,不能去掉。

热点排行