在编写SQL语句时,如果要实现一张表有而另一张表没有的数据库时,通常第一直觉的写法就是:
select * from table1 where table1.id not in (select id from table2),这种方法虽然很直观,但是in及not in的写法经常会影响其执行的效率,对于大数据量时,这个原因经常是性能的瓶颈。在SQL Server中,可以通过左连接的方法来解决,其替代写法如下:
select a.* from table1 a left join table2 b on a.id=b.id where b.id is null
同理,这个方法也适用于in的情况。