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

connect by sql 博客分类: 数据库 SQL 

程序员文章站 2024-02-28 08:28:34
...
一种SQL:

select id, level 
from tree t 
start with t.parent_id = 0 
connect by prior t.id = t.parent_id;    
相关标签: SQL