标签:etc rtl sql 优化 lists normal 策略 类型 png myisam
联合索引
当建立了索引列后,能在wherel条件中使用索引的尽量所用。
如果索引了多列,要遵守最左前缀法则。指的是查询从索引的最左前列开始并且不跳过索引中的列。
让索引不失效的一个策略
火车头 火车身 火车尾
不在索引列上做任何操作(计算、函数、(自动or手动)类型转换),会导致索引失效而转向全表扫描
中间有范围查询会导致后面的索引列全部失效
尽量使用覆盖索引(只访问索引的查询(索引列和查询列一致)),减少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
标签:etc rtl sql 优化 lists normal 策略 类型 png myisam
原文地址:https://www.cnblogs.com/qin1993/p/12122890.html