Oracle递归查询树形数据实例代码
概述
实际生活有很多树形结构的数据,比如公司分为多个部门,部门下分为多个组,组下分为多个员工;省市县的归属;页面菜单栏等等。
如果想查询某个节点的父节点或者子节点,一般通过表自身连接完成,但如果该节点的子节点还有多层结构,就需要使用递归调用。但如果数据量特别大,递归的次数指数级上升,而且查询数据库的次数也指数级上升,导致程序和数据库压力剧增,查询时间特别长。那数据库有没有递归查询语句呢?答案是肯定的。
start with connect by prior 递归查询
1、数据准备
create table area_test( id number(10) not null, parent_id number(10), name varchar2(255) not null ); alter table area_test add (constraint district_pk primary key (id)); insert into area_test (ID, PARENT_ID, NAME) values (1, null, '中国'); insert into area_test (ID, PARENT_ID, NAME) values (11, 1, '河南省'); insert into area_test (ID, PARENT_ID, NAME) values (12, 1, '北京市'); insert into area_test (ID, PARENT_ID, NAME) values (111, 11, '郑州市'); insert into area_test (ID, PARENT_ID, NAME) values (112, 11, '平顶山市'); insert into area_test (ID, PARENT_ID, NAME) values (113, 11, '洛阳市'); insert into area_test (ID, PARENT_ID, NAME) values (114, 11, '新乡市'); insert into area_test (ID, PARENT_ID, NAME) values (115, 11, '南阳市'); insert into area_test (ID, PARENT_ID, NAME) values (121, 12, '朝阳区'); insert into area_test (ID, PARENT_ID, NAME) values (122, 12, '昌平区'); insert into area_test (ID, PARENT_ID, NAME) values (1111, 111, '二七区'); insert into area_test (ID, PARENT_ID, NAME) values (1112, 111, '中原区'); insert into area_test (ID, PARENT_ID, NAME) values (1113, 111, '新郑市'); insert into area_test (ID, PARENT_ID, NAME) values (1114, 111, '经开区'); insert into area_test (ID, PARENT_ID, NAME) values (1115, 111, '金水区'); insert into area_test (ID, PARENT_ID, NAME) values (1121, 112, '湛河区'); insert into area_test (ID, PARENT_ID, NAME) values (1122, 112, '舞钢市'); insert into area_test (ID, PARENT_ID, NAME) values (1123, 112, '宝丰市'); insert into area_test (ID, PARENT_ID, NAME) values (11221, 1122, '尚店镇');
2 start with connect by prior递归查询
- start with 子句:遍历起始条件。如果要查父结点,这里可以用子结点的列,反之亦然。
- connect by 子句:连接条件。prior 跟父节点列parentid放在一起,就是往父结点方向遍历;prior 跟子结点列subid放在一起,则往叶子结点方向遍历。parent_id、id两列谁放在 “=” 前都无所谓,关键是prior跟谁在一起。
- order by 子句:排序。
常用的select项:
LEVEL:级别
connect_by_root:根节点
sys_connect_by_path:递归路径
2.1 查询所有子节点
select t.*,LEVEL from area_test t start with name ='郑州市' connect by prior id=parent_id
其实,如果单层结构,使用表自身连接也可以实现:
select * from area_test t1,area_test t2 where t1.PARENT_ID = t2.ID and t2.name='郑州市';
当查询节点下有多层数据:
select t.*,LEVEL from area_test t start with name ='河南省' connect by prior id=parent_id
select * from area_test t1,area_test t2 where t1.PARENT_ID = t2.ID and t2.name='河南省';
如果使用自身连接,也只能查到子一级节点的数据,需要遍历子一级节点,递归查询每个子一级节点下的子节点。明显麻烦很多!!!
2.2 查询所有父节点
select t.*,level from area_test t start with name ='郑州市' connect by prior t.parent_id=t.id order by level asc;
2.3 查询指定节点的根节点
select d.*, connect_by_root(d.id) rootid, connect_by_root(d.name) rootname from area_test d where name='二七区' start with d.parent_id IS NULL connect by prior d.id=d.parent_id
select d.*, connect_by_root(d.id) rootid, connect_by_root(d.name) rootname from area_test d start with d.parent_id IS NULL connect by prior d.id=d.parent_id
2.4 查询下行政组织递归路径
select id, parent_id, name, sys_connect_by_path(name, '->') namepath, level from area_test start with name = '平顶山市' connect by prior id = parent_id
3 with递归查询
3.1 with递归子类
with tmp(id, parent_id, name) as ( select id, parent_id, name from area_test where name = '平顶山市' union all select d.id, d.parent_id, d.name from tmp, area_test d where tmp.id = d.parent_id ) select * from tmp;
3.2 递归父类
with tmp(id, parent_id, name) as ( select id, parent_id, name from area_test where name = '二七区' union all select d.id, d.parent_id, d.name from tmp, area_test d where tmp.parent_id = d.id ) select * from tmp;
4 MySQL 递归查找树形结构
参考文章:Oracle递归查询
总结
到此这篇关于Oracle递归查询树形数据的文章就介绍到这了,更多相关Oracle递归查询树形数据内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
ORA-00947:Not enough values (没有足够的值)的深入分析
本篇文章是对ORA-00947:Not enough values (没有足够的值)的解决方法进行了详细的分析介绍,需要的朋友参考下2013-05-05深入浅析Orcale的nvl函数和SQL Server的isnull函数
这篇文章主要介绍了Orcale的nvl函数和SQL Server的isnull函数的相关资料,需要的朋友可以参考下2017-10-10Windows Server 2012 安装oracle11g(图文教程)
这篇文章主要介绍了Windows Server 2012 安装oracle11g(图文教程),文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2019-12-12Oracle创建自增字段--ORACLE SEQUENCE的简单使用介绍
在oracle中sequence就是所谓的序列号,每次取的时候它会自动增加,一般用在需要按序列号排序的地方接下来为大家介绍下Oracle创建自增字段方法感兴趣的各位可不要错过了哈2013-03-03oracle数据库删除数据Delete语句和Truncate语句的使用比较
oracle当表中的数据不需要时,则应该删除该数据并释放所占用的空间,删除表中的数据可以使用Delete语句或者Truncate语句,下面分别介绍2012-09-09
最新评论