博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
层次查询start with ... connect by
阅读量:6037 次
发布时间:2019-06-20

本文共 623 字,大约阅读时间需要 2 分钟。

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

prior在哪个字段前,表示查找哪个字段 (和等号左右无关)

connect by prior dep_id = parent_dep_id   connect by  parent_dep_id = prior dep_id      在parent_dep_id中查找dep_id

connect by dep_id = prior parent_dep_id      connect by prior parent_dep_id = dep_id   在dep_id中查找parent_dep_id            

转载于:https://www.cnblogs.com/dxiaoer/p/5039450.html

你可能感兴趣的文章
android--------阿里 AndFix 热修复
查看>>
control.add()
查看>>
Sublime text3中配置Github
查看>>
备份软件 FreeFileSync 怎么用
查看>>
Asp.net,C# 加密解密字符串
查看>>
网页视频播放器插件源码
查看>>
CentOS7 睡眠 休眠 关机 电源
查看>>
SqlServer里DateTime转字符串
查看>>
2019-4-23 plan
查看>>
固定弹层叉掉
查看>>
[编解码] 关于base64编码的原理及实现
查看>>
WinDbg配置和使用基础
查看>>
转:Object-Runtime的基本数据类型
查看>>
JMJS系统总结系列----Jquery分页扩展库(五)
查看>>
Excel技巧之——英文大小写转换(转)
查看>>
Google 翻译的妙用
查看>>
算法导论--python--插入排序
查看>>
Hydra用户手册
查看>>
常用的集合
查看>>
Unity3D工程源码目录
查看>>