Created
July 21, 2009 02:34
-
-
Save rich/151067 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 recursive all_categories as ( | |
select * from categories where parent_id = 3 | |
union all | |
select b.* from all_categories a, categories b where a.id = b.parent_id | |
) select * from all_categories order by parent_id; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment