标签:
#添加索引alter table 表名 add index 索引名称(列名1, 列名2);alter table 表名 add index 索引名称(列名1, 列名2, 列名3);alter table 表名 add index 索引名称(列名);
#删除索引drop index 索引名称 on 表名;
MySQL索引建立与删除
原文地址:http://www.cnblogs.com/rainy-shurun/p/5684858.html