当前位置: 代码迷 >> Oracle开发 >> 树的查询法解决方法
  详细解决方案

树的查询法解决方法

热度:13   发布时间:2016-04-24 07:31:40.0
树的查询法
select * from t_role a 
START WITH a.parent_id='01'
CONNECT BY PRIOR a.role_id=a.parent_id 
这个查询怎么样才能把roleid是01的也查询出来呢

------解决方案--------------------
SQL code
select *  from t_role a START WITH a.role_id = '01'  --改成role_id='01'试试CONNECT BY PRIOR a.role_id = a.parent_id
  相关解决方案