sql递归查询所有子集

select * from bg_organization


sql递归查询所有子集
 

with a as(
select * from bg_organization where orgid=1
union all
select x.* from bg_organization x,a
where x.pid=a.orgid)
select * from a


sql递归查询所有子集
 


相关文章: