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

Oracle递归查询

时间:2015-11-18 18:06:56      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:oracle递归查询

                ----创建数据

1.1、建立表与插入数据

技术分享

CREATE TABLE DISTRICT
(
  ID         NUMBER(10)                  NOT NULL,
  PARENT_ID  NUMBER(10),
  NAME       VARCHAR2(255 BYTE)          NOT NULL);ALTER TABLE DISTRICT ADD (  CONSTRAINT DISTRICT_PK PRIMARY KEY
 (ID));ALTER TABLE DISTRICT ADD (  CONSTRAINT DISTRICT_R01 
 FOREIGN KEY (PARENT_ID) 
 REFERENCES DISTRICT (ID)); 
 
 insert into DISTRICT (id, parent_id, name)values (1, null, ‘四川省‘);insert into DISTRICT (id, parent_id, name)values (2, 1, ‘巴中市‘);insert into DISTRICT (id, parent_id, name)values (3, 1, ‘达州市‘);insert into DISTRICT (id, parent_id, name)values (4, 2, ‘巴州区‘);insert into DISTRICT (id, parent_id, name)values (5, 2, ‘通江县‘);insert into DISTRICT (id, parent_id, name)values (6, 2, ‘平昌县‘);insert into DISTRICT (id, parent_id, name)values (7, 3, ‘通川区‘);insert into DISTRICT (id, parent_id, name)values (8, 3, ‘宣汉县‘);insert into DISTRICT (id, parent_id, name)values (9, 8, ‘塔河乡‘);insert into DISTRICT (id, parent_id, name)values (10, 8, ‘三河乡‘);insert into DISTRICT (id, parent_id, name)values (11, 8, ‘胡家镇‘);insert into DISTRICT (id, parent_id, name)values (12, 8, ‘南坝镇‘);insert into DISTRICT (id, parent_id, name)values (13, 6, ‘大寨乡‘);insert into DISTRICT (id, parent_id, name)values (14, 6, ‘响滩镇‘);insert into DISTRICT (id, parent_id, name)values (15, 6, ‘龙岗镇‘);insert into DISTRICT (id, parent_id, name)values (16, 6, ‘白衣镇‘);commit;

技术分享

二、start with connect by prior递归

  1. 查询所有子节点

SELECT *
FROM district
START WITH NAME =‘巴中市‘
CONNECT BY PRIOR ID=parent_id


技术分享

2.2、查询所有父节点

SELECT *
FROM district
START WITH NAME =‘平昌县‘
CONNECT BY PRIOR parent_id=ID


只需要交换 id 与parent_id的位置即可


技术分享



2.3、查询指定节点的,根节点

技术分享

SELECT d.*,
connect_by_root(d.id),
connect_by_root(NAME)FROM district dWHERE NAME=‘平昌县‘START WITH d.parent_id=1    --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,LEVELFROM district 
START WITH NAME=‘巴中市‘CONNECT BY PRIOR ID=parent_id

技术分享

三、with递归

3.1、with递归子类

 

技术分享

WITH t (ID ,parent_id,NAME) --要有列名AS(SELECT ID ,parent_id,NAME FROM district WHERE NAME=‘巴中市‘UNION ALLSELECT d.ID ,d.parent_id,d.NAME FROM t,district d --要指定表和列表,WHERE t.id=d.parent_id
)SELECT * FROM t;

技术分享

 

技术分享

3.2、递归父类

技术分享

WITH t (ID ,parent_id,NAME) --要有表AS(SELECT ID ,parent_id,NAME FROM district WHERE NAME=‘通江县‘UNION ALLSELECT d.ID ,d.parent_id,d.NAME FROM t,district d --要指定表和列表,WHERE t.parent_id=d.id
)SELECT * FROM t;

技术分享

技术分享

 



本文出自 “事在人为,知在天意” 博客,请务必保留此出处http://yangsj.blog.51cto.com/8702844/1714358

Oracle递归查询

标签:oracle递归查询

原文地址:http://yangsj.blog.51cto.com/8702844/1714358

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