zoukankan      html  css  js  c++  java
  • MySQL里执行SHOW INDEX结果中Cardinality的含义

    今天在写一个Perl脚本,想自动化查找出MySQL数据库中可能无效的索引,于是根据朝阳的书上提到的一些规则,我来设计了一些判断方法,其中发现某个我想要的值就是SHOW INDEX FROM table里的Cardinality,于是查了下它的含义以验证我的想法。

    MySQL中SHOW INDEX FROM table 会有以下结果列

    | Table | Non_unique | Key_name | Seq_in_index | Column_name | Collation | Cardinality | Sub_part | Packed | Null | Index_type | Comment |

    我想知道的是Cardinality列的含义。
    查看官方文档的解释:
    An estimate of the number of unique values in the index. This is updated by running ANALYZE TABLE or myisamchk -a. Cardinality is counted based on statistics stored as integers, so the value is not necessarily exact even for small tables. The higher the cardinality, the greater the chance that MySQL uses the index when doing joins.

    所以这个Cardinality会有如下的含义:
    1. 列值代表的是此列中存储的唯一值的个数(如果此列为primary key 则值为记录的行数)
    2. 列值只是个估计值,并不准确。
    3. 列值不会自动更新,需要通过Analyze table来更新一张表或者mysqlcheck -Aa来进行更新整个数据库。
    4. 列值的大小影响Join时是否选用这个Index的判断。
    5. 创建Index时,MyISAM的表Cardinality的值为null,InnoDB的表Cardinality的值大概为行数。
    6. MyISAM与InnoDB对于Cardinality的计算方式不同。

    参考:

    http://www.penglixun.com/tech/database/mysql_show_index_cardinality.html

  • 相关阅读:
    数据库外键约束
    mysql查询数据
    操作mysql操作数据库
    自定义标签
    jstl标签
    getattibute 与 getparameter区别
    2017.3.2
    java中静态,抽象,接口,继承总结
    关于使用css伪类实现小图标
    动态生成的dom元素绑定事件
  • 原文地址:https://www.cnblogs.com/xiaotengyi/p/3556761.html
Copyright © 2011-2022 走看看