数据库SQL优化

1.对查询进行优化,要尽量避免全表扫描,

  • 应尽量避免在 where 子句中对字段进行 null 值判断,否则将导致引擎放弃使用索引而进行全表扫描,创建表时NULL是默认值,但大多数时候应该使用NOT NULL,或者使用一个特殊的值,如0,-1作为默 认值。
    select id from t where num is null
  • in和 not in 也要慎用,否则会导致全表扫描,如:
    select id from t where num in(1,2,3)
    对于连续的数值,能用 between就不要用 in 了:
    select id from t where num between 1 and 3
    很多时候用 exists 代替 in 是一个好的选择:
    select num from a where num in(select num from b)
    用下面的语句替换:( not exists 代替 not in )
    select num from a where exists(select 1 from b where num=a.num)
  • 应尽量避免在 where 子句中使用 != 或 <> 操作符,否则将引擎放弃使用索引而进行全表扫描,MySQL只有对以下操作符才使用索引:<,<=,=,>,>=,BETWEEN,IN;

你可能感兴趣的:(面试,笔记)