如何解释以下结果?为什么第二个查询导致更多行?直观地,当我通过在查询中添加更多单词来限制我的标准时,返回的行数应该更少。
mysql> select count(*) from table1 WHERE MATCH (title, desc) AGAINST ('word');
+----------+
| count(*) |
+----------+
| 76220 |
+----------+
1 row in set (0.08 sec)
mysql> select count(*) from table1 WHERE MATCH (title, desc) AGAINST ('word blah');
+----------+
| count(*) |
+----------+
| 120840 |
+----------+
1 row in set (0.32 sec)
答案 0 :(得分:0)
发现它的一个或另一个。这解释了为什么第二行有更多行。