Oracle数据库的树形查询是本文我们主要要介绍的内容,包括树形查询的基本语法、构造环境、根节点遍历子节点以及子节点向根节点追溯,接下来就让我们一起来了解一下这部分内容吧。
基本语法:
class="dp-xml">
- select...from tabename start with cond1 connect by prior cond2 where cond2
注意:
cond1是根节点的限定语句。
cond2是连接条件,其中prior表示上一条记录,指该记录的父亲是上一条记录。
cond3是过滤条件。
构造环境:
- create table Family(
- id integer,
- parentid integer,
- name varchar2(50)
- )
- insert into family values(0,0,'a')
- insert into family values(1,0,'b')
- insert into family values(2,1,'c')
- insert into family values(3,1,'d')
- insert into family values(4,1,'e')
- insert into family values(5,1,'f')
通过根节点遍历子节点
例如:查询父亲等于1的所有子的信息
- select * from family start with parentid=1 connect by prior id=parentid
通过子节点向根节点追溯
例如:
- select * from family start with id=5 connect by prior parentid=id
注:如果报ORA-01436:用户数据库中的coonect by循环,则将第一条数据中的parentid改为null,否则loop循环找parentid就找不到了!
扩展:通过level 关键字查询所在层次
select t.*,level from family t start with parentid=1 connect by prior id=parentid
注意:表必须用别名。
关于Oracle数据库的树形查询的知识就介绍到这里了,如果您想了解更多Oracle数据库的知识,可以看一下这里的文章:http://database.51cto.com/oracle/,相信一定可以带给您收获的!