I have a typical Persons table and an Orders table defined in such a way that I can do JOIN query as the following to return Orders for all Persons.
SELECT Perso
This should work... theres more than one way to do it.
select * from persons where person.id not in (select person_id from orders)