零散的MySql基础记不住,看这一篇就够啦( 四 )

修改表结构为普通索引
alter table test add index index_test_id_name (id,name);全文索引表结构
create table test( id int(11), name varchar(25), content text, fulltext (text));创建表之后创建组合索引
create fulltext index index_content on test(content);修改表结构为普通索引
alter table test add fulltext index index_content (content);


推荐阅读