这种情况是正常的,特别是数据量比较小的时候
fulltext是特别为大数据量设计的以下摘自mysql英文手册
http://dev.mysql.com/doc/mysql/en/fulltext-search.htmlSuch a technique works best with large collections (in fact, it was carefully tuned this way). For very small tables, word distribution does not adequately reflect their semantic value, and this model may sometimes produce bizarre results. For example, although the word ``MySQL'' is present in every row of the articles table, a search for the word produces no results: mysql> SELECT * FROM articles
    -> WHERE MATCH (title,body) AGAINST ('MySQL');
Empty set (0.00 sec)