hytqm

Oracle 递归查询子节点和父节点 函数方法


查询父类以上所有数据 select  *  from plt_org_info start with id =47 connect by prior id = ParentsId
查询父类以下所有节点数据 select  *  from plt_org_info start with id =47 connect by prior ParentsId = id 

分类:

技术点:

相关文章: