数据库
首页 > 数据库> > Oracle中start with connect by prior的用法:查询当前记录连同上一级或下一级的记录

Oracle中start with connect by prior的用法:查询当前记录连同上一级或下一级的记录

作者:互联网

start with connect by prior用于树形结构的数据中,如部门存在上下级关系。

start with 子句:遍历起始条件。

connect by 子句:连接条件。关键词prior,prior跟父节点列parentid放在一起,就是往父结点方向遍历;prior跟子结点列subid放在一起,则往叶子结点方向遍历,

parentid、subid两列谁放在“=”前都无所谓,关键是prior跟谁在一起。

现有需求如下:

1)、根据部门id查询当前部门和上级部门的信息

<select id="selectUp" resultType="map">
        select code from sys_department d where d.del_flag ='0'
                      start with id = #{departmentId}
        connect by id = prior parent_id
    </select>

2)、根据部门id查询当前部门和下级部门的信息

<select id="selectDown" resultType="map">
        select code from sys_department d where d.del_flag ='0'
                      start with id = #{departmentId}
        connect by parent_id = prior id
    </select>

参考文章:https://www.cnblogs.com/benbenduo/p/4588612.html

标签:结点,遍历,一级,start,记录,prior,connect,id
来源: https://www.cnblogs.com/zwh0910/p/15913670.html