Skip to content

Instantly share code, notes, and snippets.

View toxyy's full-sized avatar

toxyy toxyy

  • wearing sweat pants
View GitHub Profile
@kentoj
kentoj / closure-table-operations.sql
Last active December 31, 2021 07:12 — forked from emmanuel/file.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