我们创建了索引 ,
比如 :
create index idx_emp_lastname on emp(last_name);
这个时候,想去查看这个索引情况,可以使用以下命令完成 :
show index from emp;
mysql> show index from emp \G *************************** 1. row *************************** Table: emp Non_unique: 1 Key_name: idx_emp_lastname Seq_in_index: 1 Column_name: last_name Collation: A Cardinality: 3317 Sub_part: NULL Packed: NULL Null: Index_type: BTREE Comment: Index_comment: 2 rows in set (0.00 sec) |