show index 之Cardinality (mysql)

mysql
show index  之Cardinality

官方文档的解释:

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.
 
总结一下:
1. 这个值是表式这个索引唯一值的个数,既基数。(需要注意的是这个值并不是特别准确的,每执行下命令,这个值可能都会不同)
2. MyISAM存储引擎与InnoDB存储引擎在NULL上对于Cardinality的计算方式不同
3. 这个值越大在做表连接的时候,就越有机会选择这个索引。

Cardinality会为我们优化SQL语句的执行效率,提供重要的参考依据。

你可能感兴趣的:(show index 之Cardinality (mysql))