I have a table containing information on people, called person, this is linked to a second table called Employee, every person in Person has a record in Employee, so under most circumstances an inner join works well here.
However of those employee's "some" are managers, these have another table called management as well as thier employee and person's records, the management table links on the person table, using the same "personID"
What i need to do is pull back information on all "none" management employee's, and management the fall under certain criteria.
If i run a select statement on the "criteria" i need for managers, i lose all the none management employee's, because they don't even have a link to the manager table, they don't fill the criteria of the select statement.
I need a way of telling it to pull back the managers only if they meet the requirements, and bring back everyone who doesn’t have a link to this manager table.
im not sure if that was very clear ..