To create a left join when you use InfoMaker to design your DataWindow:
1) pick the two tables
2) Double click the equal sign on the link that joins them
3) Pick the correct relationship (rows that match, and any rows with no match from whichever table is the "parent")
Once you have the left join, you'll have to test for NULL values in the "child" table's primary key.
To do it using a subquery, use the NOT EXISTS operator in the operator column for the WHERE clauses.
-PatP