数据量大时关联查询a.key is null 会降低查询效率吗
SELECT * FROM table1 a left join table2 b on a.key=b.key where a.key is null ;
这个is null 在数据量大时 应该会查的很慢吧
SELECT * FROM table1 a left join table2 b on a.key=b.key where a.key is null ;
这个is null 在数据量大时 应该会查的很慢吧
2018-10-09
举报