建立mysql索引的方式

建立索引方式:spa

一、create index 索引名   on 表名 (字段)索引

二、alter table 表  add index 索引名  (字段)table

 

-- 普通索引
alter table 表名 add index 索引名 (字段) ;
-- 惟一索引
alter table 表名 add unique (字段) ;
-- 主鍵索引
alter table 表名 add primary key (字段) ;

 

刪除索引:im

 

drop index 索引名  on 表名tab

相關文章
相關標籤/搜索