2个回答
展开全部
这个很简单啊
表结构一般如下tablename(表名)
id--节点ID, name-- 节点名称 parentid父节点ID,
-----获取节点号为6下的所有子节点
select * from tablename t start with id =6 connect by prior id=parentid
表结构一般如下tablename(表名)
id--节点ID, name-- 节点名称 parentid父节点ID,
-----获取节点号为6下的所有子节点
select * from tablename t start with id =6 connect by prior id=parentid
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
create function GetSubNode_C(@parentid int)
returns @t table(Id int ,Name varchar(20),Parent_id int,Level int)
As
Begin
declare @Level int --等级根节点等级为1
set @Level=1
insert into @t select Id,Name,Parent_id,@Level from C where Id=@parentid
while @@rowcount>0 --如果至少有一条子节点
begin
set @Level=@Level+1
insert into @t select a.Id,a.Name,a.Parent_id,@Level from C a,@t b
where a.Parent_id in (select Id from C where Id=b.ID)
and b.Level=@Level-1
end
return
End
--该函数返回一个临时表
这个思路 查询当前ID是否含有子节点(where 父节点=当前ID) 有就继续 没有就循环终止
returns @t table(Id int ,Name varchar(20),Parent_id int,Level int)
As
Begin
declare @Level int --等级根节点等级为1
set @Level=1
insert into @t select Id,Name,Parent_id,@Level from C where Id=@parentid
while @@rowcount>0 --如果至少有一条子节点
begin
set @Level=@Level+1
insert into @t select a.Id,a.Name,a.Parent_id,@Level from C a,@t b
where a.Parent_id in (select Id from C where Id=b.ID)
and b.Level=@Level-1
end
return
End
--该函数返回一个临时表
这个思路 查询当前ID是否含有子节点(where 父节点=当前ID) 有就继续 没有就循环终止
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询