摘要: -- 查询id=100的所有父节点select * from TABLE start with id = 100 connect by nocycle prior pid = id-- 查询id=100的所有子节点select * from TABLE start with id = 100 connect by nocycle prior id = pid 阅读全文
posted @ 2013-05-10 15:24 jieyuefeng 阅读(170) 评论(0) 推荐(0)