索引是不由儲存空間,如果使用恰當,是可以提高查詢效率呢
本文就展示一下索引的增、刪操作
1.查詢一下mysql上的索引資訊
指令:
show index from staff; Output: mysql> show index from staff; Empty set (0.00 sec)
#2.增加普通索引
指令:
create index idx_staff on staff(id);
3.增加UNIQUE索引
#指令:
create unique index idx_unique_staff on staff(id);
Tips:
#不能用CREATE INDEX語句建立PRIMARY KEY索引
4.透過alter指令來增加索引
指令:
alter table staff add index idx_staff_byAlter (id);
5.刪除索引
指令1:
drop index idx_staff on staff;
6.指令2 :
alter table staff drop index idx_staff_byAlter;
以上是Mysql中關於索引操作的經驗分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!