首页 > 数据库技术 > 详细

Oracle 树操作

时间:2016-09-26 19:38:07      阅读:145      评论:0      收藏:0      [点我收藏+]
 select…start with…connect by…prior

1.查找一个节点的所有直属子节点(节点本身+所有后代),有以下两种写法。

select id, typename, typecode, parentid, ordernum
from purchase_type
where status = 1
  start with id = 15
  connect by parentid = prior id
  order siblings by ordernum

select id, typename, typecode, parentid, ordernum
from purchase_type
where status = 1
  start with id = 15
  connect by prior id = parentid
  order siblings by ordernum

显示结果:

技术分享

2.查找一个节点的所有直属父节点(节点本身+所有祖宗(父类的父类....))。

select id, typename, typecode, parentid, ordernum
from purchase_type
where status = 1
  start with id = ‘136‘
  connect by id = prior parentid
  order siblings by ordernum

select id, typename, typecode, parentid, ordernum
from purchase_type
where status = 1
    start with id = 136
    connect by prior parentid = id
    order siblings by ordernum

显示结果:

技术分享

Oracle 树操作

原文:http://www.cnblogs.com/chengx/p/5910227.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!