SQL:
select
*
from PT_ORG_INFO START WITH id=‘102‘ CONNECT BY PRIOR id=par_id
连表递归查询SQL:
select info.*from PT_CAMERA_INFO info
join (select*from PT_ORG_INFO START WITH id=‘102‘ CONNECT BY PRIOR id=par_id) org on org.id=info.org_id
where1=1
原文:http://www.cnblogs.com/s0611163/p/7238801.html
【说明】:本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!