MySQL全文搜索-仅包含所有单词的结果

MySQL全文搜索-仅包含所有单词的结果,mysql,Mysql,通过下面的查询,我得到了包含单词“International”和“Shipping”的结果,还得到了包含“International”或“Shipping”的结果。如何确保结果同时包含两个单词而不是其中一个 任何帮助都将不胜感激,谢谢 SELECT client_company,client_description,client_keywords FROM tb_clients WHERE MATCH (client_company,client_description,client_keywo

通过下面的查询,我得到了包含单词“International”和“Shipping”的结果,还得到了包含“International”或“Shipping”的结果。如何确保结果同时包含两个单词而不是其中一个

任何帮助都将不胜感激,谢谢

SELECT client_company,client_description,client_keywords
FROM tb_clients
WHERE
MATCH (client_company,client_description,client_keywords)
AGAINST ('International Shipping') > 0
LIMIT 10

在每个所需单词前面添加一个
+
,并在布尔模式下使用

在实现这个特性时,MySQL使用了有时被称为隐含布尔逻辑的东西,其中

 + stands for AND
 - stands for NOT
  [no operator] implies OR
是否有一种方法可以使“+”隐式化,即通过更改某些MySQL模式并匹配所有单词,即使不需要在每个单词上提供+?