sql根据子节点查出所有的父节点的 100
select*from(select*fromgqgx_company_levellnwhereln.company_level_namelike'%EMS%')t2这里...
select *
from (select *
from gqgx_company_level ln
where ln.company_level_name like '%EMS%') t2
这里面能查出10条不同层的数据,有的是1层,有的是2层,有的是5层,现在怎么查出这些节点的所有父节点的信息呢(gqgx_company_level中有id,name,p_id)
解决了再加200分 展开
from (select *
from gqgx_company_level ln
where ln.company_level_name like '%EMS%') t2
这里面能查出10条不同层的数据,有的是1层,有的是2层,有的是5层,现在怎么查出这些节点的所有父节点的信息呢(gqgx_company_level中有id,name,p_id)
解决了再加200分 展开
展开全部
用函数做,根据你的表结构改:
父节点查询子节点
create function GetChildID(@ParentID int)
returns @t table(ID int)
as
begin
insert into @t select id from table where parent_id = @ParentID
while @@rowcount<>0
begin
insert into @t select a.id from table as a
inner join @t as b
on a.parent_id = b.ID
and not exists(select 1 from @t where ID=a.ID)
end
return
end
go
子节点查询父节点
create function GetParentID(@ChildID int)
returns @t table(PID int)
as
begin
insert into @t select parent_id from table where ID=@ChildID
while @@rowcount<>0
begin
insert into @t select a.parent_id from table as a
inner join @t as b
on a.ID=b.PID
and not exists(select 1 from @t where PID=a.parent_id)
end
return
end
go
父节点查询子节点
create function GetChildID(@ParentID int)
returns @t table(ID int)
as
begin
insert into @t select id from table where parent_id = @ParentID
while @@rowcount<>0
begin
insert into @t select a.id from table as a
inner join @t as b
on a.parent_id = b.ID
and not exists(select 1 from @t where ID=a.ID)
end
return
end
go
子节点查询父节点
create function GetParentID(@ChildID int)
returns @t table(PID int)
as
begin
insert into @t select parent_id from table where ID=@ChildID
while @@rowcount<>0
begin
insert into @t select a.parent_id from table as a
inner join @t as b
on a.ID=b.PID
and not exists(select 1 from @t where PID=a.parent_id)
end
return
end
go
更多追问追答
追问
然后呢,创建了函数了之后该怎么和我那个条件连接起来? 还有这个函数里面的表和字段需要改动吗?
追答
如创建了函数,你要查12节点的父节点,可以用 select * from GetParentID('12') 这样,改动语句要先改: insert into @t select parent_id from table where ID=@ChildID 这里的table是表名,id是子节点字段名,下面的语句跟着修改
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询