Created
April 15, 2014 13:09
-
-
Save matthewpoer/10731237 to your computer and use it in GitHub Desktop.
Select an Account and its Member Accounts (children)
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 an account and its children | |
select parent.id,parent.name,child.parent_id,child.id,child.name from accounts parent | |
left join accounts child on child.parent_id=parent.id | |
where parent.deleted=0 and (child.deleted=0 or child.deleted is null) | |
order by parent.name; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment