select * from table2 a where not exists
(select 1 from table1 b where a.co1=b.co1 and a.co3=b.co3)
co1                                                co3     
-------------------------------------------------- -------
aac                                                a
adc                                                b(所影响的行数为 2 行)