Wow, I need help with this! I have a table structure similar to the one below where an employee has a manager and a employee can also be a manager. I need to create a query that displays all employees directly and indirectly that report to a specified manager:
EmployeeID | ManagerID
-----------------------
101 110
102 110
103 110
104 103
105 103
106 103
I want to say "Give me all employee's that report to manager 110".....This should include the employees that directly report to 110 and the employees that report to 103.
Thanks In Advance
Carmo
EmployeeID | ManagerID
-----------------------
101 110
102 110
103 110
104 103
105 103
106 103
I want to say "Give me all employee's that report to manager 110".....This should include the employees that directly report to 110 and the employees that report to 103.
Thanks In Advance
Carmo