创建普通索引 alter table xxxxxx add index index_name(xxxxxxx) 表名↑ 列名↑ 删除索引(这个会把索引都删掉) alter table xxxx drop index index_name、 drop index index_name_name on xxxx 查看索引/键 show index from xxxx show keys from xxxx 相关文章: