Mysql中對于索引設(shè)置的經(jīng)驗分享
發(fā)表時間:2023-07-25 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]索引是不由存儲空間,如果使用恰當,是可以提高查詢效率呢本文就展示一下索引的增、刪操作1.查詢一下mysql上的索引信息命令: show index from staff;Output:mysql&g...
索引是不由存儲空間,如果使用恰當,是可以提高查詢效率呢
本文就展示一下索引的增、刪操作
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語句創(chuàng)建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中關(guān)于索引操作的經(jīng)驗分享的詳細內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!
學(xué)習(xí)教程快速掌握從入門到精通的SQL知識。