码迷,mamicode.com
首页 > 其他好文 > 详细

connect by prior...start with...

时间:2015-03-06 18:35:09      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

 

从根节点向叶子节点遍历:

  select * from emap e connect by prior e.mapid=e.parentid start with e.mapid=3

    

从叶子节点反向搜索根节点:

  select * from emap e connect by prior e.parentid=e.mapid start with e.mapid=1846

  select * from emap e connect by prior e.parentid=e.mapid start with e.mapid in (1846,1847,...)

    -> 适用于不用显示所有树结构的情况下条件查找树,只显示符合条件部分的树。

  

connect by prior...start with...

标签:

原文地址:http://www.cnblogs.com/xuhj/p/4318810.html

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