.myisam,bdb,innodb,memory 单表至少支持16个索引 .create index id_index on emp (id) 为emp表创建一个名为id_index的id字段的索引 .drop index id_index on emp 删除emp表的id_index 索引 .explain xxxxxxx,可以查看相关的执行结果,用于优化表用 .最合适的索引列是“条件列”,而不是“选择列” 比如 ; 那么最好是在year字段上创建索引,而不是name字段 .使用索引的字段,…