Oracle递归查询父子兄弟节点
2018-06-18 03:54:37来源:未知 阅读 ()
1、查询某节点下所有后代节点(包括各级父节点)
1 // 查询id为101的所有后代节点,包含101在内的各级父节点
2 select t.* from SYS_ORG t start with id = '101' connect by parent_id = prior id
2、查询某节点下所有后代节点(不包含各级父节点)
1 select t.*
2 from SYS_ORG t
3 where not exists (select 1 from SYS_ORG s where s.parent_id = t.id)
4 start with id = '101'
5 connect by parent_id = prior id
3、查询某节点所有父节点(所有祖宗节点)
1 select t.*
2 from SYS_ORG t
3 start with id = '401000501'
4 connect by prior parent_id = id
4、查询某节点所有的兄弟节点(亲兄弟)
1 select * from SYS_ORG t
2 where exists (select * from SYS_ORG s where t.parent_id=s.parent_id and s.id='401000501')
5、查询某节点所有同级节点(族节点),假设不设置级别字段
1 with tmp as(
2 select t.*, level leaf
3 from SYS_ORG t
4 start with t.parent_id = '0'
5 connect by t.parent_id = prior t.id)
6 select *
7 from tmp
8 where leaf = (select leaf from tmp where id = '401000501');
这里使用两个技巧,一个是使用了level来标识每个节点在表中的级别,还有就是使用with语法模拟出了一张带有级别的临时表
6、查询某节点的父节点及兄弟节点(叔伯节点)
with tmp as(
select t.*, level lev
from SYS_ORG t
start with t.parent_id = '0'
connect by t.parent_id = prior t.id)
select b.*
from tmp b,(select *
from tmp
where id = '401000501' and lev = '2') a
where b.lev = '1'
union all
select *
from tmp
where parent_id = (select distinct x.id
from tmp x, --祖父
tmp y, --父亲
(select *
from tmp
where id = '401000501' and lev > '2') z --儿子
where y.id = z.parent_id and x.id = y.parent_id);
这里查询分成以下几步。
首先,将全表都使用临时表加上级别;
其次,根据级别来判断有几种类型,以上文中举的例子来说,有三种情况:
(1)当前节点为顶级节点,即查询出来的lev值为1,那么它没有上级节点,不予考虑。
(2)当前节点为2级节点,查询出来的lev值为2,那么就只要保证lev级别为1的就是其上级节点的兄弟节点。
(3)其它情况就是3以及以上级别,那么就要选查询出来其上级的上级节点(祖父),再来判断祖父的下级节点都是属于该节点的上级节点的兄弟节点。
最后,就是使用union将查询出来的结果进行结合起来,形成结果集。
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- java实现分页查询 2020-06-05
- mybatis模糊查询sql 2020-05-20
- Oracle SQLPlus导出数据到csv文件 2020-05-18
- Oracle用decode函数或CASE-WHEN实现自定义排序 2020-05-18
- 用一张表来存储数据状态,并且可以进行多状态精确查询;使用 2020-04-30
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash