MySQL索引创建与删除

1、创建索引:create index 索引名 on 表名 (字段名);

例:

  给user表的username字段创建索引

  create index index_name on user (username);  

2、删除索引:drop index 索引名 on 表名;

例:  

  删除user表的username字段创建索引

  drop index index_name on user;

我们可以通过explain 查看语句的执行情况

MySQL索引创建与删除

 

上一篇:idea引入gradle项目 出现堆空间耗尽Expiring Daemon because JVM heap space is exhausted Daemon will be stopped at


下一篇:composer require报错: Allowed memory size of 1610612736 bytes exhausted