树形查询一般用于上下级场合,使用的特殊sql语法包括level,prior,start with,connect by等,下面将就实例来说明其用法. 表定义: create table tb_hierarchy( id number(4,0) primary key, name nvarchar2(20) not null, pid number(4,0)) 充值: insert into tb_hierarchy(id,name) values('','Gates'); insert into…