Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I came up with this SQL statement:

SELECT   *
      FROM   (    SELECT   FID,
                           YEAR,
                           STATE,
                           CONNECT_BY_ISLEAF IS_LEAF
                    FROM   (SELECT   year YEAR,
                                     state STATE,
                                     id ID,
                                     foreign_id FID
                              FROM   yearsTable)
              CONNECT BY   (    PRIOR YEAR - 1 = YEAR
                            AND STATE = 'state2'
                            AND PRIOR FID = FID
                            AND LEVEL <= 2)
              START WITH   (    YEAR >= 2012 - 2
                            AND YEAR <= 2012 - 1
                            AND STATE = 'state1'))
CONNECT BY   (PRIOR YEAR - 1 = YEAR AND PRIOR FID = FID)
START WITH   (IS_LEAF = 0)
  ORDER BY   FID, YEAR ASC;

Which basically searches for all years which have undergone a state change from the previous year to the following. Works fine on the local testing machine, but breaks on the production system.

The baffling part is my output changes from just plain wrong i.e. not as expected (rows with IS_LEAF = 1 and STATE = 'state1' which should be filtered by the second connect by statement) to nothing when I change the asc after YEAR to desc.

So far I just tested this with Oracle SQL Developer, Database Version is 10g.

Can anyone explain why the output is changing depending on the sorting direction?

share|improve this question
3  
Order by happens AFTER the CONNECT BY and hence will destroy the result sets 'hierarchy'. You typically never use connect by AND order by.You can refer the link asktom.oracle.com/pls/asktom/… – Gaurav Soni Nov 22 '12 at 15:10
@GauravSoni is right, see the doc: "In a hierarchical query, do not specify either ORDER BY or GROUP BY, as they will override the hierarchical order of the CONNECT BY results. If you want to order rows of siblings of the same parent, then use the ORDER SIBLINGS BY clause." – Vincent Malgrat Nov 22 '12 at 15:28
As the foreign_id FID is unique among siblings and also does not seem to be the issue. Using ORDER SIBLINGS BY shows the exact same behavior. @Ben: Thanks for the formatting edit! – Lucas Hoepner Nov 22 '12 at 15:50
2  
Can you add some sample data and (correct) output? From your description I'm not sure you need hierarchal query, analytics might work. – Alex Poole Nov 22 '12 at 16:22

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.