共计 998 个字符,预计需要花费 3 分钟才能阅读完成。
一、基本语法
connect by 递归查询基本语法是:
select 1 from 表格 start with ... connect by prior id = pId
start with:表示以什么为根节点,不加限制可以写 1 =1,要以 id 为 123 的节点为根节点,就写为 start with id =123
connect by:connect by 是必须的,start with 有些情况是可以省略的,或者直接 start with 1= 1 不加限制
prior:prior 关键字可以放在等号的前面,也可以放在等号的后面,表示的意义是不一样的,比如 prior id = pid,就表示 id 就是这条记录的根节点了
二、业务场景
举个例子,写条 SQL:
t_user(用户表),t_unit_info(单位表),意思是以单位编码为 ”15803″ 的单位为根节点,查找出其单位及其子单位的用户信息
select us.user_code, us.user_name
from t_user us
where exists (select 1
from t_unit_info uinfo where
us.unit_code = uinfo.unit_code
start with uinfo.unit_code = '15803'
connect by prior uinfo.unit_code = uinfo.para_unit_code)
然后将 prior 换一下位置,发现只能查出单位编码为 ”15803″ 对应的单位,不能查子级单位
select us.user_code, us.user_name
from t_user us
where exists (select 1
from t_unit_info uinfo where
us.unit_code = uinfo.unit_code
start with uinfo.unit_code = '15803'
connect by uinfo.unit_code = prior uinfo.para_unit_code)
Oracle 递归查询 start with connect by prior 的用法和知识不仅仅这些,本博客只是简单记录一下我所遇到的,比较详细的在 Linux 公社,https://www.linuxidc.com/Linux/2014-06/102687.htm
更多 Oracle 相关信息见 Oracle 专题页面 https://www.linuxidc.com/topicnews.aspx?tid=12
:
正文完
星哥玩云-微信公众号