If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
try this:
select table1.* from table1 left join table2 on table1.column1=table2.column2 where table2.column2 is null
(if you want to select only rows of table1 that didn't have a corresponding row in table2, otherwise leave out the where-clause and change your selected fields)