天天看點

MySQL之索引

1、索引中關于搜尋的算法

MySQL之索引

2、索引的使用原則

MySQL之索引

3、索引的優缺點

MySQL之索引

4、索引的種類

MySQL之索引

5、顯示索引

show index from 表名;

MySQL之索引

6、建立唯一索引

alter table 表名 add unique [唯一索引名] (列名)

MySQL之索引

7、建立全文索引

alter table 表名 add fulltext [全文索引名] (列名)

MySQL之索引

8、索引相關介紹

MySQL之索引

9、索引總結

MySQL之索引

10、全文索引的使用

select * from member where match(列名) against (‘查找列中某個值’);

MySQL之索引
MySQL之索引

繼續閱讀