Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> How to Sort Subset of Hierarchical Query
Hi,
Can anyone help me how to sort subset when using Oracle Hierarchical Query, For Example:
Table:
Parent Child Child_Seq
Contains:
aaa bbb 300 bbb ccc 200 bbb ddd 100 bbb eee 240 aaa kkk 210SQL Statement:
select parent, child, child_seq from TABLE start with parent = 'aaa'
connect by prior child=parent.
Output:
aaa bbb 300 bbb ccc 200 bbb ddd 100 bbb eee 240 aaa kkk 210
But I hope that I can get another result, if same parent, I need to sort by child_seq:
aaa bbb 300 bbb ddd 100 bbb ccc 200 bbb eee 240 aaa kkk 210Received on Thu Sep 30 1999 - 18:33:30 CDT
![]() |
![]() |