So let's say I have the following table
Employee_ID Supervisor_ID 001 123 178 123 002 178 154 178 003 154 004 201
I'm attempting to pull all employees that fall under the supervision of Supervisor_ID 123 along with all other supervisors within that branch (ie 178, 158) so it would spit out the following employees 001, 178, 002, 154, 003. How would I achieve this ? My apologies for the lack of wording in the title.