欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

SQL优化

程序员文章站 2022-06-02 21:43:46
...

1.创建索引

      在select,where,order by常涉及到的字段建立索引,但也不能建立太多,
      太多反而降低了系统的维护速度和增大了空间需求

2.选择合适搜索引擎

    1.读操作多:MyISAM(表级锁)
    2.写操作多:InnoDB(行级锁)

3.sql语句优化(避免全表扫描)

    1.where子句 尽量不使用 != ,否则放弃索引全表扫描
    2.尽量避免null空值判断,否则全表扫描
        优化前:
            select number from t1 where number is null;
        优化后:
            在number字段设置默认值0,确保number字段无NULL
            select number from t1 where number=0;
  
    3.尽量避免用or连接条件,否则全表扫描
        优化前:
            select id from t1 where id=10 or id=20;
        优化后:
            select id from t1 where id=10
            union all
            select id from t1 where id=20;
    4.模糊查询尽量避免使用前置的%,否则全表扫描
        select variable from t1 where name='%secure%';
    5.尽量避免使用in和not in 否则全表扫描
        优化前:
            select id from t1 where id in(1,2,3,4);
        优化后:
            select id from t1 where id between 1 and 4;
    6.不能使用select * ...
        用具体的字段代替*,不要返回用不到的任何字段
相关标签: SQL优化