MySQL索引基础

索引可以提高查询效率

参考文章:https://www.cnblogs.com/qixidi/p/10260180.html

https://www.cnblogs.com/Cheney222/articles/5876382.html


1.查看当前SQL语句查询效率

explain + SQL语句

type为all效率最低,rows越小越效率高

2.创建索引

create index 索引名称 on 数据表(字段名)

3.查看索引

show index from 数据表

4.删除索引

drop index 索引名称 on 数据表

posted @ 2020-03-11 17:32  故知学IT  阅读(90)  评论(0编辑  收藏  举报