Skip to content

Instantly share code, notes, and snippets.

View alexy4744's full-sized avatar
🍥

Alex alexy4744

🍥
View GitHub Profile
@alexy4744
alexy4744 / closure-table-operations.sql
Last active April 12, 2021 01:40 — forked from kentoj/closure-table-operations.sql
Closure Table operations SQL fragments
-- Retrieve descendants
-- ====================
-- retrieve descendants of #4
SELECT c.*
FROM Comments AS c
JOIN TreePaths AS t ON c.comment_id = t.descendant
WHERE t.ancestor = 4;
-- Retrieve ancestors