试题 56: Table t is an InnoDB table. Examine these statements and output: select count(1) from t
;count(1) = 72
Mysql show indexes from t \\G
**************************1.row***************************
Table: t
Non_unique:0
Key_name: PRIMARY
Seq_in_index:1
Column_name: a
Collation:A
Cardinality:72
Sub_part:NULL
Packed:NULL
Null:
Index_type:BTREE
Comment:
Index_comment:
Visible:YES
Expression:NULL
***************************2.row***************************
Table: t
Non_unique:1 Key_name:b_idx Seq_in_index:1 Column_name:b Collation: A Cardinality:1
Sub_part: NULL P acked:NULL Null:YES Index_type:BTREE Comment:
Index_comment: Visible:NO Expression: NULL
2 row in set (0.00 sec)
Which two are true?