Created
September 20, 2015 20:59
-
-
Save orf/5565a572c6ddda039d6f to your computer and use it in GitHub Desktop.
This file contains hidden or 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 recursetree(id, parent_id) AS ( | |
SELECT id, parent_id FROM comments WHERE parent_id = post_id | |
UNION | |
SELECT t.id, t.parent_id | |
FROM comments t | |
JOIN recursetree rt ON rt.id = t.parent_id | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment