SQL语句查询出父节点下的所有子节点

SQL语句查询出父节点下的所有子节点idusernameparentid1user12user213user324user41parentId是父节点,如用SQL查询出u... SQL语句查询出父节点下的所有子节点

id username parentid
1 user1
2 user2 1
3 user3 2
4 user4 1

parentId是父节点,
如用SQL查询出user1 及子节点user2、user4
展开
 我来答
gy93108083
推荐于2018-02-27 · TA获得超过283个赞
知道小有建树答主
回答量:665
采纳率:50%
帮助的人:275万
展开全部

 create table  ##tmp_users  (id int, username nvarchar(255), parentid int )
 declare @ID int
  select @ID=id from t_Users t where exists
 (select * from t_Users t2 where t2.id=t.parentid and t2.username='user1') 
 exec AddSons @ID
 select * from ##tmp_users
 drop table ##tmp_users
 
 
 --存储
 create procedure AddSons @id int
 as
 if exists(select * from t_Users where parentid=@id)
 begin
  declare @tmp_ID int
  declare cur cursor for
   select id from t_Users where parentid=@id
  open cur
  fetch next from cur into @tmp_ID
  while @@FETCH_STATUS=0
  begin
   insert into ##tmp_users
   select * from t_Users t where id=@tmp_ID   
   if exists(select * from  t_Users where parentid=@tmp_ID)
   begin
    exec AddSons @tmp_ID
   end  
   fetch next from cur into @tmp_ID
  end
  close cur 
  DEALLOCATE cur  
 end 
 --递归调用,不知道是否想要这样
9iTreeNewBee
2014-11-12 · TA获得超过505个赞
知道小有建树答主
回答量:1800
采纳率:55%
帮助的人:424万
展开全部
SQL> select * from new;

ID USERNAME PARENTID
---------- ---------- ----------
1 user1
2 user2 1
3 user3 2
4 user4 1

SQL> select sys_connect_by_path(username,'>') "Path"
2 from new
3 start with id=1
4 connect by prior id=parentid;

Path
--------------------------------------------------------------------------------
>user1
>user1>user2
>user1>user2>user3
>user1>user4
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
junnyrr
2014-11-12
知道答主
回答量:21
采纳率:0%
帮助的人:3.2万
展开全部
select b.username from tablename a right outer join tablename b on a.id = b.pid where b.parentid = 1 or b.parentid is null;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
救救大汉江山吧
2014-11-12 · 超过61用户采纳过TA的回答
知道小有建树答主
回答量:222
采纳率:100%
帮助的人:98.1万
展开全部
是直接字节点还是包括子节点的字节点。。?
追问
直接子节点的
追答
select  * from tb where id = 1 or parentid = 1
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式