当前位置:Gxlcms > 数据库问题 > mysql为什么会选错索引

mysql为什么会选错索引

时间:2021-07-01 10:21:17 帮助过:26人阅读

CREATE TABLE `t` (
  `id` int(11) NOT NULL,
  `a` int(11) DEFAULT NULL,
  `b` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `a` (`a`),
  KEY `b` (`b`)
) ENGINE=InnoDB;

用存储过程插入100000条数据

delimiter ;;
create procedure idata()
begin
  declare i int;
  set i=1;
  while(i<=100000)do
    insert into t values(i, i, i);
    set i=i+1;
  end while;
end;;
delimiter ;
call idata();

mysql> select * from t where a between 10000 and 20000;

技术分享图片

 

技术分享图片

 

set sql_long_query=0;这里表示接下来所有的查询都会进入到慢查询日志
select * from t where a between 10000 and 20000; /*Q1*/
select * from t force index(a) where a between 10000 and 20000;/*Q2*/

技术分享图片

第一条是全表扫描,第二条扫描了10000条

二:优化器的逻辑

1.查看索引扫描的行数

技术分享图片 2.索引基数是如何统计的 选出某几个页,算出这几个页的平均行数,然后乘以总页数 技术分享图片

这里表明数据库的索引选择会错误,优化器不只会考虑扫描行数,会把回表的查询也会考虑进去。

 技术分享图片

 

看下边的这个语句:

mysql> select * from t where (a between 1 and 1000)  and (b between 50000 and 100000) order by b limit 1;
mysql> explain select * from t where (a between 1 and 1000) and (b between 50000 and 100000) order by b limit 1;
技术分享图片

a 索引扫描1000条,b 索引扫描了50000条,但是用了索引B ,


三:索引选择和异常处理:

1:使用force index,问题是

2: 考虑修改语句,比如,

mysql> select * from  (select * from t where (a between 1 and 1000)  and (b between 50000 and 100000) order by b limit 100)alias limit 1;
技术分享图片

 

3,删除不适合的索引或者创建合适的索引


总结:频繁插入删除的表会有选错索引的情况

 

mysql为什么会选错索引

标签:日志   create   tween   values   creat   为什么   index   扫描   value   

人气教程排行