1226关于count(*)不走主键索引反而走二级索引
转自 http://www.2cto.com/database/201508/433975.html
- mysqlcount(*)会选哪个索引?
-
今天在查询一个表行数的时候,发现count(1)和count(*)执行效率居然是一样的。这跟Oracle还是有区别的。遂查看两种方式的执行计划:
123456789101112131415161718mysql>
select
count
(1)
from
customer;
+
----------+
|
count
(1) |
+
----------+
| 150000 |
+
----------+
1 row
in
set
(0.03 sec)
mysql> flush tables;
Query OK, 0
rows
affected (0.00 sec)
mysql>
select
count
(*)
from
customer;
+
----------+
|
count
(*) |
+
----------+
| 150000 |
+
----------+
1 row
in
set
(0.03 sec)
查看执行计划:
123456789101112131415161718192021222324mysql> explain
select
count
(1)
from
customer;
+
----+-------------+----------+-------+---------------+---------------+---------+------+--------+-------------+
| id | select_type |
table
| type | possible_keys |
key
| key_len | ref |
rows
| Extra |
+
----+-------------+----------+-------+---------------+---------------+---------+------+--------+-------------+
| 1 | SIMPLE | customer |
index
|
NULL
| i_c_nationkey | 5 |
NULL
| 151191 | Using
index
|
+
----+-------------+----------+-------+---------------+---------------+---------+------+--------+-------------+
1 row
in
set
(0.00 sec)
mysql> explain
select
count
(*)
from
customer;
+
----+-------------+----------+-------+---------------+---------------+---------+------+--------+-------------+
| id | select_type |
table
| type | possible_keys |
key
| key_len | ref |
rows
| Extra |
+
----+-------------+----------+-------+---------------+---------------+---------+------+--------+-------------+
| 1 | SIMPLE | customer |
index
|
NULL
| i_c_nationkey | 5 |
NULL
| 151191 | Using
index
|
+
----+-------------+----------+-------+---------------+---------------+---------+------+--------+-------------+
1 row
in
set
(0.00 sec)
mysql> show
index
from
customer;
+
----------+------------+---------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
|
Table
| Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed |
Null
| Index_type | Comment | Index_comment |
+
----------+------------+---------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| customer | 0 |
PRIMARY
| 1 | c_custkey | A | 150525 |
NULL
|
NULL
| | BTREE | | |
| customer | 1 | i_c_nationkey | 1 | c_nationkey | A | 47 |
NULL
|
NULL
| YES | BTREE | | |
+
----------+------------+---------------+--------------+-------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
2
rows
in
set
(0.08 sec)
发现不管是count(1)或count(*)都是走的i_c_nationkey这个索引。平时我们检索数据的时候肯定是主键索引效率高,那么我们强制主键索引来看看:
1234567891011121314mysql>
select
count
(*)
from
customer
force
index
(
PRIMARY
);
+
----------+
|
count
(*) |
+
----------+
| 150000 |
+
----------+
1 row
in
set
(0.68 sec)
mysql> explain
select
count
(*)
from
customer
force
index
(
PRIMARY
);
+
----+-------------+----------+-------+---------------+---------+---------+------+--------+-------------+
| id | select_type |
table
| type | possible_keys |
key
| key_len | ref |
rows
| Extra |
+
----+-------------+----------+-------+---------------+---------+---------+------+--------+-------------+
| 1 | SIMPLE | customer |
index
|
NULL
|
PRIMARY
| 4 |
NULL
| 150525 | Using
index
|
+
----+-------------+----------+-------+---------------+---------+---------+------+--------+-------------+
1 row
in
set
(0.00 sec)
可以看到走主键索引的时候效率比较差。那么是为什么呢。
平时我们检索一列的时候,基本上等值或范围查询,那么索引基数大的索引必然效率很高。但是在做count(*)的时候并没有检索具体的一行或者一个范围。那么选择基数小的索引对
count操作效率会更高。在做count操作的时候,mysql会遍历每个叶子节点,所以基数越小,效率越高。mysql非聚簇索引叶子节点保存的主键ID,所以需要检索两遍索引。但是这里相对于遍历主键索引。及时检索两遍索引效率也比单纯的检索主键索引快。
那么再以一个表作为证明:1234567891011121314151617181920212223242526mysql> explain
select
count
(*)
from
lineitem;
+
----+-------------+----------+-------+---------------+--------------+---------+------+---------+-------------+
| id | select_type |
table
| type | possible_keys |
key
| key_len | ref |
rows
| Extra |
+
----+-------------+----------+-------+---------------+--------------+---------+------+---------+-------------+
| 1 | SIMPLE | lineitem |
index
|
NULL
| i_l_shipdate | 4 |
NULL
| 6008735 | Using
index
|
+
----+-------------+----------+-------+---------------+--------------+---------+------+---------+-------------+
1 row
in
set
(0.00 sec)
mysql> show
index
from
lineitem;
+
----------+------------+-----------------------+--------------+---------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
|
Table
| Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed |
Null
| Index_type | Comment | Index_comment |
+
----------+------------+-----------------------+--------------+---------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
| lineitem | 0 |
PRIMARY
| 1 | l_orderkey | A | 2997339 |
NULL
|
NULL
| | BTREE | | |
| lineitem | 0 |
PRIMARY
| 2 | l_linenumber | A | 5994679 |
NULL
|
NULL
| | BTREE | | |
| lineitem | 1 | i_l_shipdate | 1 | l_shipDATE | A | 5208 |
NULL
|
NULL
| YES | BTREE | | |
| lineitem | 1 | i_l_suppkey_partkey | 1 | l_partkey | A | 428191 |
NULL
|
NULL
| YES | BTREE | | |
| lineitem | 1 | i_l_suppkey_partkey | 2 | l_suppkey | A | 1998226 |
NULL
|
NULL
| YES | BTREE | | |
| lineitem | 1 | i_l_partkey | 1 | l_partkey | A | 461129 |
NULL
|
NULL
| YES | BTREE | | |
| lineitem | 1 | i_l_suppkey | 1 | l_suppkey | A | 19213 |
NULL
|
NULL
| YES | BTREE | | |
| lineitem | 1 | i_l_receiptdate | 1 | l_receiptDATE | A | 17 |
NULL
|
NULL
| YES | BTREE | | |
| lineitem | 1 | i_l_orderkey | 1 | l_orderkey | A | 2997339 |
NULL
|
NULL
| | BTREE | | |
| lineitem | 1 | i_l_orderkey_quantity | 1 | l_orderkey | A | 1998226 |
NULL
|
NULL
| | BTREE | | |
| lineitem | 1 | i_l_orderkey_quantity | 2 | l_quantity | A | 5994679 |
NULL
|
NULL
| YES | BTREE | | |
| lineitem | 1 | i_l_commitdate | 1 | l_commitDATE | A | 7836 |
NULL
|
NULL
| YES | BTREE | | |
+
----------+------------+-----------------------+--------------+---------------+-----------+-------------+----------+--------+------+------------+---------+---------------+
12
rows
in
set
(0.96 sec)
这里一看l_shipDATE并不是基数最小的呀,殊不知这个统计信息是不准确的。我们用sql看一下。
1234567mysql>
select
count
(
distinct
(l_shipDATE))
from
lineitem;
+
-----------------------------+
|
count
(
distinct
(l_shipDATE)) |
+
-----------------------------+
| 2526 |
+
-----------------------------+
1 row
in
set
(0.01 sec)
那么比他小的那些列呢?
1234567mysql>
select
count
(
distinct
(l_receiptDATE))
from
lineitem;
+
--------------------------------+
|
count
(
distinct
(l_receiptDATE)) |
+
--------------------------------+
| 2554 |
+
--------------------------------+
1 row
in
set
(0.01 sec)
其他就不看了,这里再次说明mysql选择了基数小的索引。
1226关于count(*)不走主键索引反而走二级索引的更多相关文章
- mysql InnoDB index 主键采用聚簇索引,二级索引不采用聚簇索引
原文链接 我的归纳: (1)InnoDB的主键采用聚簇索引存储,使用的是B+Tree作为索引结构,但是叶子节点存储的是索引值和数据本身(注意和MyISAM的不同). (2)InnoDB的二级索引不使用 ...
- 【mysql优化】mysql count(*)、count(1)、count(主键字段)、count(非主键字段)哪个性能最佳
测试结果为:count(*)和count(1)基本相等,count(非主键字段)最耗性能 -- 数据量 708254select count(*) from tmp_test1;-- avg 0.22 ...
- Oracle删除主键约束的同时删除索引
继续昨天的折腾(Oracle修改主键约束),删掉主键约束后,发现唯一索引并未删掉.仔细看了下,主键约束跟唯一索引名称不一样,这说明是先创建了唯一索引,后创建的主键约束.我们来试验下: SQL> ...
- 主键primary key和唯一索引unique index
1)主键一定是唯一性索引,唯一性索引并不一定就是主键. 2)主键就是能够唯一标识表中某一行的属性或属性组,一个表只能有一个主键,但可以有多个候选索引. 3)主键常常与外键构成参照完整性约束,防止出现数 ...
- mysql 主键和默认 设为索引的规则
一.mysql 表中如果是单主键的话,那这个主键也会被 系统默认建为 索引 二.mysql 表中如果是复合主键的话,那系统会遵循左对齐原则,即如复合主键 a 和 b字段和c字段..., 默认建的主键索 ...
- MySQL 聚簇索引&&二级索引&&辅助索引
MySQL非聚簇索引&&二级索引&&辅助索引 mysql中每个表都有一个聚簇索引(clustered index ),除此之外的表上的每个非聚簇索引都是二级索引,又叫辅 ...
- COUNT(*)、COUNT(主键)、COUNT(1)
MyISAM引擎,记录数是结构的一部分,已存cache在内存中; InnoDB引擎,需要重新计算,id是主键的话,会加快扫描速度: 所以select count(*) MyISAM完胜! MyISA ...
- 图解MySQL:count(*) 、count(1) 、count(主键字段)、count(字段)哪个性能最好?
大家好,我是小林. 当我们对一张数据表中的记录进行统计的时候,习惯都会使用 count 函数来统计,但是 count 函数传入的参数有很多种,比如 count(1).count(*).count(字段 ...
- MySQL的几个概念:主键,外键,索引,唯一索引
概念: 主键(primary key) 能够唯一标识表中某一行的属性或属性组.一个表只能有一个主键,但可以有多个候选索引.主键常常与外键构成参照完整性约束,防止出现数据不一致.主键可以保证记录的唯一和 ...
随机推荐
- Linux下的解压命令小结
Linux下常见的压缩包格式有5种:zip tar.gz tar.bz2 tar.xz tar.Z 其中tar是种打包格式,gz和bz2等后缀才是指代压缩方式:gzip和bzip2 filename. ...
- SimpleSSO:使用Microsoft.Owin.Security.OAuth搭建OAuth2.0授权服务端
目录 前言 OAuth2.0简介 授权模式 (SimpleSSO示例) 使用Microsoft.Owin.Security.SimpleSSO模拟OpenID认证 通过authorization co ...
- android权限
一.WebView 访问internet 的权限: 1.在layout中增加一个WebView 控件: <WebView android:layout_width="match_par ...
- PowerDesigner从Sqlserver中反转为带注释的字典及快捷键操作
PowerDesigner的操作经常忘记,所以把常用的功能记录下来备忘. 1.修改反转过来的字段 PowerDesigner从数据库反转的时候,默认不带注释,需要先进行修改. 输入如下脚本: {OWN ...
- axis2+spring集成
转载自:http://www.cnblogs.com/linjiqin/archive/2011/07/05/2098316.html 1.新建一个web project项目,最终工程目录如下: 注意 ...
- ++a和a++的区别
另: short s = 4; s = s + 1; // 编译不通过.因为编译器无法判断等号右边的运算结果是否依然在等号左边的short类型范围内,容易丢失精度. s += 1; // 编译通过.+ ...
- LoadRunner免费公开课,惠普金牌讲师亲授
[开课时间]:9月13日 下午2:00—4:00(暂定)[活动费用]:免费[主办单位]:慧都学院[课程形式]:网络在线公开课 LoadRunner简介惠普软件测试解决方案LoadRunner测试实例答 ...
- Java 中的集合接口——List、Set、Map
Java 中的集合接口——List.Set.Map 什么叫集合:集合就是Java API所提供的一系列类的实例,可以用于动态存放多个对象.这跟我们学过的数组差不多,那为什么我们还要学集合,我们看看数组 ...
- (九)Maven坐标详解
Maven的一个核心的作用就是管理项目的依赖,引入我们所需的各种jar包等.为了能自动化的解析任何一个Java构件,Maven必须将这些Jar包或者其他资源进行唯一标识,这是管理项目的依赖的基础,也就 ...
- C# 在Repeater 的ItemDataBound 如何转换e.Item.DataItem 的类型
1.使用DataSet和DataTable绑定数据源时,用 DataRowView view = (DataRowView)e.Item.DataItem; 2.DataReader绑定数据源时,用 ...