I need to write a sql statement that find all sub records which has many level meaning the parent record has 2nd level and 3rd level child records tying to the parent organization. So far I wrote
SELECT *
FROM tblOrganization
where Parent_Org_ID = '11111'
How can I write a sql statement that will give me all the child records (2nd, 3rd level so on) tying to the parent ID record?
Thanks