mysql索引下推原理_mysql的索引下推理解和实践

对于mysql建表稍有点经验的开发人员都会为后续的where查询条件提前考虑创建索引。

这里说的是在使用索引查询时有关索引下推的有关知识点。

综合前人的经验结果:索引下推是数据库检索数据过程中为减少回表次数而做的优化。

判断是否需要回表的是由mysql存储引擎控制,默认从mysql5.6版本开始支持。

下面用docker分别创建基于mysql5.5和mysql5.6的容器,表结构保持一致(docker创建mysql容器不做演示)。

首先看mysql5.5:

mysql> select version();

+-----------+

| version() |

+-----------+

| 5.5.62 |

+-----------+

1 row in set (0.00 sec)

mysql> show create table testhhG;

*************************** 1. row ***************************

Table: testhh

Create Table: CREATE TABLE `testhh` (

`id` int(10) unsigned NOT NULL,

`age` int(10) unsigned DEFAULT '0',

`name` char(10) NOT NULL DEFAULT '',

`height` int(10) NOT NULL DEFAULT '0',

`name2` char(10) NOT NULL DEFAULT '',

`height2` int(10) NOT NULL DEFAULT '0',

PRIMARY KEY (`id`),

KEY `age_index` (`age`) USING HASH,

KEY `un` (`name`,`height`)

) ENGINE=InnoDB DEFAULT CHARSET=latin1

1 row in set (0.00 sec)

ERROR:

No query specified

mysql> explain select * from testhh where name like 'a%' and height = 100G;

*************************** 1. row ***************************

id: 1

select_type: SIMPLE

table: testhh

type: range

possible_keys: un

key: un

key_len: 14

ref: NULL

rows: 1

Extra: Using where

1 row in set (0.00 sec)

ERROR:

No query specified

上面可见explain的extra字段结果时Using where,表示优化器需要通过索引回表查询数据。

再看mysql5.6:

mysql> selectversion();+-----------+

| version() |

+-----------+

| 5.6.50 |

+-----------+

1 row in set (0.00sec)

mysql>show create table uaG;*************************** 1. row ***************************Table: ua

Create Table: CREATE TABLE `ua` (

`id`int(10) NOT NULL AUTO_INCREMENT,

`name`char(10) NOT NULL DEFAULT '',

`height`int(10) NOT NULL DEFAULT '0',

`name2`char(10) NOT NULL DEFAULT '',

`height2`int(10) NOT NULL DEFAULT '0',

PRIMARY KEY (`id`),

KEY `nh` (`name`,`height`)

) ENGINE=InnoDB DEFAULT CHARSET=latin11 row in set (0.00sec)

ERROR:

No query specified

mysql> explain select * from ua where name like 'a%' and height=10G;*************************** 1. row ***************************id:1select_type: SIMPLE

table: ua

type: range

possible_keys: nh

key: nh

key_len:14

ref: NULL

rows:1Extra: Using index condition1 row in set (0.00sec)

ERROR:

No query specified

explain的extra字段是Using index condition,表示会先通过条件过滤索引,再通过过滤后的索引查询符合索引条件的数据。

内容来源于网络如有侵权请私信删除

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值