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

oracle遍历树

时间:2016-08-23 16:58:05      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:

1:首先数据库中表必须是树形结构的
2:super_department_id  department_id 的父节点编号
3:以下语句的执行结果是:department_id = 88 所有字节点及子子节点的记录
 
select * from pub_department a start with a.department_id = 88 connect by prior a.department_id = a.super_department_id

 

 

 

遍历此节点到祖先节点:

   select * from tree t  connect by prior t.parent= t.child start with t.child=‘001190360‘

遍历此节点到孙子节点:

   select * from tree t  connect by priort.child =t.parent start with t.child=‘001190360‘

oracle遍历树

标签:

原文地址:http://www.cnblogs.com/argus-agent/p/5799772.html

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