9.MySQL索引的操作(二)+https://developer.aliyun.com/article/1393908
删除索引
第一种方法-删除主键索引: alter table 表名 drop primary key;
我们先看看表user10已有的索引
删除主键索引
第二种方法-其他索引的删除: alter table 表名 drop index 索引名;
索引名就是show keys from 表名中的 Key_name 字段
第三种方法方法: drop index 索引名 on 表名
索引创建原则
- 比较频繁作为查询条件的字段应该创建索引
- 唯一性太差的字段不适合单独创建索引,即使频繁作为查询条件
- 更新非常频繁的字段不适合作创建索引(这样会反复重新构建索引,效率低下)
- 不会出现在where子句中的字段不该创建索引