1、索引中关于搜索的算法
2、索引的使用原则
3、索引的优缺点
4、索引的种类
5、显示索引
show index from 表名;
6、创建唯一索引
alter table 表名 add unique [唯一索引名] (列名)
7、创建全文索引
alter table 表名 add fulltext [全文索引名] (列名)
8、索引相关介绍
9、索引总结
10、全文索引的使用
select * from member where match(列名) against (‘查找列中某个值’);