SELECT * from table1
LEFT JOIN table2 ON (table1.column1 = table2.column2)
WHERE table2.column2 = NULL
Should find any entries in table1 that don't have a matching entry in table2 (column1 & column2 are the same data you referred to with different names in each table).