• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    MySQL中count(*)、count(1)和count(col)的区别汇总

    前言

    count函数是用来统计表中或数组中记录的一个函数,count(*) 它返回检索行的数目, 不论其是否包含 NULL值。最近感觉大家都在讨论count的区别,那么我也写下吧:欢迎留言讨论,话不多说了,来一起看看详细的介绍吧。

    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()优化实现
    • MySQL中聚合函数count的使用和性能优化技巧
    • 关于mysql中innodb的count优化问题分享
    • 聊聊MySQL的COUNT(*)的性能
    • 详解 MySQL中count函数的正确使用方法
    • 浅谈MySQL 统计行数的 count
    • mysql count提高方法总结
    • MySQL中无过滤条件的count详解
    • mySQL count多个表的数据实例详解
    • MySQL COUNT函数的使用与优化
    上一篇:关于避免MySQL替换逻辑SQL的坑爹操作详解
    下一篇:CentOS 7.0如何启动多个MySQL实例教程(mysql-5.7.21)
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    MySQL中count(*)、count(1)和count(col)的区别汇总 MySQL,中,count,和,col,的,区别,