本文共 625 字,大约阅读时间需要 2 分钟。
1.此处以emp表为例 此表中 empno 字段与 mgr 字段存在 下级与上级关系
2从上往下查 最顶级的boss 此处的level是三大伪列之一 级别
select level,empno,ename,mgr from empstart with empno=7839 --下级字段connect by prior empno=mgr; --下级字段=上级字段3 从下往上查
select level,empno,ename,mgr from empstart with empno=7369 --下级字段connect by prior mgr=empno; --上级字段=下级字段4 --只是过滤单个节点 该节点下的都保留了
select level,empno,ename,mgr from empwhere empno<>7698 --下级字段start with empno=7839connect by prior empno=mgr; --下级字段=上级字段5 --过滤整个分支select level,empno,ename,mgr from empstart with empno=7839 --下级字段connect by prior empno=mgr and empno<>7698; --下级字段=上级字段转载于:https://blog.51cto.com/12941821/2056005