The below query is returning data as expected but we have a requirement that where there is level 1, it should be the last level and last level should be represented as 1st.
I am running this in Oracle database.
Data for TABLE_1:-
FK_1 |FK_2 | REL_CD
-----+-----+-------
345 | 123 | ORG
567 | 345 | ORG
897 | 567 | ORG
Data for Org table:-
FK |ORG |CD
---+------+-----
123|Global|A_001
345|Canada|A_002
567|AB |A_003
897|VAN |A_004
I am getting below result, which is logically correct:-
FK | ORG | LVL| CD
----+-------+----+-----------
123 | Global| 4 |A_001
345 | Canada| 3 |A_002
567 | AB | 2 |A_003
897 | VAN | 1 |A_004
But the expected output is:-
FK | ORG | LVL| CD
----+-------+----+-----------
123 | Global| 1 |A_001
345 | Canada| 2 |A_002
567 | AB | 3 |A_003
897 | VAN | 4 |A_004
Query used
SELECT FK, ORG, LVL, CD
FROM (SELECT LEVEL AS LVL, CONNECT_BY_ROOT FK_2 AS FK_1, CONNECT_BY_ISCYCLE
FROM TABLE_1 T1
WHERE FK_2='897'
CONNECT BY NOCYCLE PRIOR T1=T2
) INNER JOIN
ORG
ON ORG.FK= FK_1;
You can use a recursive CTE to get the result you want.
For example:
Result:
See running example at db<>fiddle.