col mysql_MySQL中count(*)、count(1)、count(col)三者的区别是什么

MySQL中count(*)、count(1)、count(col)三者的区别是什么

发布时间:2021-01-27 17:51:06

来源:亿速云

阅读:64

作者:Leah

MySQL中count(*)、count(1)、count(col)三者的区别是什么?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。

1、表结构:dba_jingjing@3306>[rds_test]>CREATE TABLE `test_count` (

-> `c1` varchar(10) DEFAULT NULL,

-> `c2` varchar(10) DEFAULT NULL,

-> KEY `idx_c1` (`c1`)

-> ) ENGINE=InnoDB DEFAULT CHARSET=utf8;

Query OK, 0 rows affected (0.11 sec)

2、插入测试数据:dba_jingjing@3306>[rds_test]>insert into test_count values(1,10);

Query OK, 1 row affected (0.03 sec)

dba_jingjing@3306>[rds_test]>insert into test_count values(abc,null);

ERROR 1054 (42S22): Unknown column 'abc' in 'field list'

dba_jingjing@3306>[rds_test]>insert into test_count values('abc',null);

Query OK, 1 row affected (0.04 sec)

dba_jingjing@3306>[rds_test]>insert into test_count values(null,null);

Query OK, 1 row affected (0.04 sec)

dba_jingjing@3306>[rds_test]>insert into test_count values('368rhf8fj',null);

Query OK, 1 row affected (0.03 sec)

dba_jingjing@3306>[rds_test]>select * from test_count;

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

| c1  | c2 |

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

| 1   | 10 |

| abc  | NULL |

| NULL  | NULL |

| 368rhf8fj | NULL |

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

4 rows in set (0.00 sec)

测试:dba_jingjing@3306>[rds_test]>select count(*) from test_count;

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

| count(*) |

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

|  4 |

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

1 row in set (0.00 sec)

EXPLAIN: {

"query_block": {

"select_id": 1,

"message": "Select tables optimized away"

1 row in set, 1 warning (0.00 sec)dba_jingjing@3306>[rds_test]>select count(1) from test_count;

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

| count(1) |

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

|  4 |

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

1 row in set (0.00 sec)

EXPLAIN: {

"query_block": {

"select_id": 1,

"message": "Select tables optimized away"

1 row in set, 1 warning (0.00 sec)dba_jingjing@3306>[rds_test]>select count(c1) from test_count;

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

| count(c1) |

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

|   3 |

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

1 row in set (0.00 sec)

"table": {

"table_name": "test1",

"access_type": "index",

"key": "idx_c1",

"used_key_parts": [

"c1"

],

"key_length": "33",

那么这里面的"key_length": "33",为什么是33呢,什么是二级索引?见下节

count(*) 和count(1) 是没有区别的,而count(col) 是有区别的

执行计划有特点:可以看出它没有查询索引和表,有时候会出现select tables optimized away 不会查表,速度会很快

Extra有时候会显示“Select tables optimized away”,意思是没有更好的可优化的了。官方解释For explains on simple count queries (i.e. explain select count(*) from people) the extra

section will read "Select tables optimized away."

This is due to the fact that MySQL can read the result directly from the table internals and therefore does not need to perform the select.

---MySQL对于“Select tables optimized away”的含义, 不是"没有更好的可优化的了", 官方解释中关键的地方在于:

MySQL can read the result directly

所以,合理的解释是:

1 数据已经在内存中可以直接读取;

2 数据可以被认为是一个经计算后的结果,如函数或表达式的值;

3 一旦查询的结果被优化器"预判"可以不经执行就可以得到结果,所以才有"not need to perform the select".

关于MySQL中count(*)、count(1)、count(col)三者的区别是什么问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注亿速云行业资讯频道了解更多相关知识。

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值