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

层次查询start with ... connect by

时间:2015-12-11 16:36:39      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

如:select distinct dep_id from t_sys_dep_dimensions start with dep_id = (select dept_id from t_sys_person where mdm_user_id=‘#userId#‘) connect by nocycle prior dep_id = parent_dep_id   ;

查找#userId#所在部门的顶级部门。

 

START WITH 定义数据行查询的初始起点;

nocycle 防止循环查找;

CONNECT BY

prior 定义表中的各个行是如何联系的;connect by 后面的"prior" 如果缺省,则只能查询到符合条件的起始行,并不进行递归查询;

层次查询start with ... connect by

标签:

原文地址:http://www.cnblogs.com/dxiaoer/p/5039450.html

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