时间:2021-07-01 10:21:17 帮助过:5人阅读
中间有范围查询会导致后面的索引列全部失效
尽量使用覆盖索引(只访问索引的查询(索引列和查询列一致)),减少select *
mysql 在使用不等于(!= 或者<>)的时候无法使用索引会导致全表扫描
如果定要需要使用不等于,请用覆盖索引
自定义为NOT NULL
在字段为not null的情况下,使用is null 或 is not null 会导致索引失效
解决方式:覆盖索引
EXPLAIN select name,age,pos from staffs where name is not null
EXPLAIN select * from staffs2 where name is null
EXPLAIN select * from staffs2 where name is not null
Is not null 的情况会导致索引失效
解决方式:覆盖索引
EXPLAIN select name,age,pos from staffs where name is not null
like以通配符开头(‘%abc...‘)mysql索引失效会变成全表扫描的操作
解决方式:覆盖索引
EXPLAIN select name,age,pos from staffs where name like ‘%july%‘
字符串不加单引号索引失效
EXPLAIN select * from staffs where name = 917
解决方式:请加引号
EXPLAIN
select * from staffs where name=‘July‘ or name = ‘z3‘
EXPLAIN
select * from staffs where name=‘July‘
UNION
select * from staffs where name = ‘z3‘
解决方式:覆盖索引
EXPLAIN
select name,age from staffs where name=‘July‘ or name = ‘z3‘
提交前关闭自动提交
尽量使用批量insert语句
可以使用MyISAM存储引擎
LOAD DATA INFLIE;
使用LOAD DATA INFLIE ,比一般的insert语句快20倍
select * into OUTFILE ‘D:\\product.txt‘ from product_info
load data INFILE ‘D:\\product.txt‘ into table product_info
Mysql 优化
标签:etc rtl sql 优化 lists normal 策略 类型 png myisam