使用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; 这个对