mysql删除索引 增加索引
程序员文章站
2022-04-15 13:31:58
...
使用ALTER TABLE语句创建索引
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) ;
删除索引
drop index index_name on table_name ;
alter table table_name drop index index_name ;
alter table table_name drop primary key ;
alter table ugc_sys_wocomment drop index user_id_index ;
alter table ugc_sys_wocomment add index user_id_index (user_id) USING BTREE; 这个对