MySQL索引建立与删除

#添加索引
alter table 表名 add index 索引名称(列名1, 列名2);
alter table 表名 add index 索引名称(列名1, 列名2, 列名3);
alter table 表名 add index 索引名称(列名);

#删除索引
drop index 索引名称 on 表名;

posted on 2016-07-19 15:01  舒润  阅读(154)  评论(0编辑  收藏  举报

导航