Oracle查询树

SELECT *

  FROM CHANNEL T

 START WITH CHANNEL_ID = 'xxx'

CONNECT BY PARENT_ID = PRIOR CHANNEL_ID and T.Is_Navigation = 1 and level <=3 and T.Status = 3


你可能感兴趣的:(oracle,树)