MySQL新增 刪除索引

2022-03-12 14:47:56 字數 1098 閱讀 2193

應用於表建立完畢之後再新增;

alter

table 表名 add 索引型別 (unique,primary

key,fulltext,index)[

索引名]

(欄位名);

--

普通索引

alter

table table_name add

index

index_name (column_list) ;

--唯一索引

alter

table table_name add

unique

(column_list) ;

--主鍵索引

alter

table table_name add

primary

key (column_list) ;

create

index index_name on table_name(username(length));

--

create只能新增這兩種索引;

create

index index_name on

table_name (column_list)

create

unique

index index_name on table_name (column_list)

刪除索引可以使用alter tabledrop index語句來實現;

drop

index index_name on

table_name ;

alter

table table_name drop

index

index_name ;

alter

table table_name drop

primary

key ;

mysql新增刪除索引 mysql新增刪除索引

mysql show create table table test table create table table test create table table test id bigint 20 not null auto increment comment 涓婚敭 activity id ...

mysql 取消索引設定 mysql新增刪除索引

mysql show create table table test table create table table test create table table test id bigint 20 not null auto increment comment 涓婚敭 activity id ...

mysql敤 罰 mysql新增刪除索引

mysql show create table table test table create table table test create table table test id bigint 20 not null auto increment comment 涓婚敭 activity id ...