SELECT * FROM table1 a left join table2 b on a.key=b.key where a.key is null ;
这个is null 在数据量大时 应该会查的很慢吧
但是,这个也是必须要加的一个条件呀