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

上一篇:在tmux中使用docker报错[Error:Got permission denied while trying to connect to the Docker]


下一篇:PyQt5基础学习-多个信号对应多个槽