I am trying to learn mySQL database, and have started taking a look at the database behind wordpress. I am using the Wordpress Data Base Descrition to review the structure and I came upon the following:
|Table: wp_commentmeta|
---------------------------------------------------------------------------------
|Field |Type |Null |Key |Default | Extra
|-----------|--------------------|------|----|--------|--------------------------
|meta_id |bigint(20) unsigned | |PRI |NULL |auto_increment
|comment_id |bigint(20) unsigned | |IND |0 |FK->wp_comments.comment_id
|meta_key |varchar(255) |YES |IND |NULL |
|meta_value |longtext |YES | |NULL |
|Indexes|
---------------------------------------------------------
|Keyname |Type |Cardinality |Field
|------------|---------|------------|--------------------
|PRIMARY |PRIMARY |0 |meta_ID
|comment_id |INDEX |none |comment_id
|meta_key |INDEX |none |meta_key
My question is, what does a Cardinality value of 0 indicate in the table above. I understand the explanation of cardinality as explained in this SO answer in that it is the number of unique values within a particular set of indexed values, but I dont get what setting a value of 0 does in this particular case.