spikeypaul
MIS
I have a 2 tables one that holds employee information and another that holds product information. The product information holds 2 fields (manager,salesman)which reference a unique key on the employee table. My query needs to return product information with both manager and salesman. I have an inner join from manager field to the employee PK and returns the field employee name. I dont know how to do the same for the salesman field. I can add another inner join from salesman field to the employee PK but cannot return the field employee name because its being taken by the manager request. If anyone can point me in the right direction or atleast let me know what such query is called so I can research it better.