码迷,mamicode.com
首页 > 数据库 > 详细

Oracle获取下级节点

时间:2014-11-10 11:24:54      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:io   ar   strong   on   art   as   sql   oracle   c   

oracle :
查找所有下级
  select * from tbl_test start with id=1 connect by prior id=pid
查找所有上级
select * from tbl_test start with id=5 connect by prior pid=id

sql server:

sql server 递归获取下级和当前级
with cte as
(
select OrgCode,OrgParentCode, 0 as lvl from SysOrgan
where OrgCode = ‘zfj‘
union all
select d.OrgCode,d.OrgParentCode,lvl + 1 from cte c inner join SysOrgan d
on c.OrgCode = d.OrgParentCode
)
select * from cte

Oracle获取下级节点

标签:io   ar   strong   on   art   as   sql   oracle   c   

原文地址:http://www.cnblogs.com/liufuhui/p/4086429.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!