mysql full text search error
问题 I try to add full text search to an existing table. When I tried: alter table tweets add fulltext index(tags); I got the error: ERROR 1214 (HY000): The used table type doesn't support FULLTEXT indexes what is the problem? How can I know what table type it is? 回答1: This is how you check the table type: SELECT table_schema,engine FROM information_schema.tables WHERE table_name='tweet'; Only MyISAM supports FULLTEXT Indexes . You may also want to preempt the stopword list. Click Here for the