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 (‘查找列中某個值’);