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

oracle 查树

程序员文章站 2022-06-02 13:02:45
...
create table t_catalog_item(
catalog_item_id number(10),
parent_item_id number(10),
catalog_item_name varchar2(32)
);

oracle 查树

 结构如下:

-1
  -2
    3
    4
  -5
    6

查询节点5及其子节点SQL:

select t.*,rowid from  t_catalog_item t
start with catalog_item_id=5 connect by (prior catalog_item_id=parent_item_id)

 得到想要的结果5 6:

 

oracle 查树