如: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" 如果缺省,则只能查询到符合条件的起始行,并不进行递归查询;
时间: 2024-11-03 20:54:58