欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

Oracle层次查询和with函数的使用示例

程序员文章站 2022-06-14 21:27:40
...

-- ||是连接符,level可以看成常量 select t.fnum,LPAD(' ',3*level-3)||'|-'||fname fname,t.fparent,Level lev From m_depart t --start with后面是条件1 start with fparent is null --connect by Prior后面是条件2 connect by Prior fnum=fparent


-- ||是连接符,level可以看成常量
select t.fnum,LPAD(' ',3*level-3)||'|-'||fname fname,t.fparent,Level lev
From m_depart t
--start with后面是条件1
start with fparent is null
--connect by Prior后面是条件2
connect by Prior fnum=fparent