Created
August 17, 2015 15:45
-
-
Save mgp/957ce689937ea4d4a135 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
select GrandParentLevel.parent_id as parent_id, ParentLevel.child_id as child_id | |
from NodeToNode as ParentLevel | |
inner join NodeToNode as GrandParentLevel | |
on ParentLevel.parent_id = GrandParentLevel.child_id | |
where ParentLevel.child_id = 752; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment