MySql 添加索引与删除索引

  

 use DB;
    -- 添加索引,index_type为索引名称,student为表名
     ALTER TABLE `student` ADD INDEX index_type (type) 
   -- 删除索引,index_type为索引名称,student为表名
     drop index index_type on `student` ;
原文地址:https://www.cnblogs.com/personblog/p/14709216.html