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?
Order by happens AFTER the CONNECT BYand 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:10foreign_idFIDis unique among siblings and also does not seem to be the issue. UsingORDER SIBLINGS BYshows the exact same behavior. @Ben: Thanks for the formatting edit! – Lucas Hoepner Nov 22 '12 at 15:50