I have two tables A and B. A is the parent of B. I'm trying to find all As which do not have a specific B as a child. Ordinarily I would do
SELECT A.id FROM A
WHERE A.id NOT IN
(SELECT B.AId FROM B WHERE B.someFK = foo);
However for performance reasons I'm keen not to use an inner select. I've tried something like:
SELECT A.id FROM A
LEFT JOIN B ON (A.id = B.AId)
WHERE B.someFK != foo OR B.someFK IS NULL
The problem is this returns As which have more than one child regardless of if they have the specified B.
EDIT: Changed B.id to B.someFK