Last active
July 31, 2019 10:13
-
-
Save szymonk92/b5e86d4ffb3c07fa05ddd8e9635b7b47 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WITH lvl1 AS | |
(SELECT dir_id , 1 AS Lvl | |
FROM t_directory AS tart1 | |
WHERE tart1.parentDirectory = 201 | |
) | |
, | |
lvl2 AS | |
( | |
SELECT dir_id, 2 AS Lvl | |
FROM t_directory AS tart2 | |
WHERE tart2.parentDirectory IN (SELECT dir_id FROM lvl1) | |
), | |
lvl3 AS | |
( | |
SELECT dir_id, 3 AS Lvl | |
FROM t_directory AS tart3 | |
WHERE tart3.parentDirectory IN (SELECT dir_id FROM lvl2) | |
) | |
SELECT dir_id, Lvl FROM lvl1 | |
UNION | |
SELECT dir_id, Lvl FROM lvl2 | |
UNION | |
SELECT dir_id, Lvl FROM lvl3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment