标签: mysql full-text-search
我有在线商店的商品表,在item_title,item_description,item_category列上有全文索引。我想编写搜索脚本,但在决定搜索哪种模式(自然语言或布尔模式)时遇到问题。假设用户搜索intel core i5 notebooks。如果我在搜索脚本中设置自然语言模式,则用户将无法搜索查询intel core i5 notebooks -apple。任何人都能解释一下自然语言模式和布尔模式之间的区别吗?哪个更准确?
intel core i5 notebooks
intel core i5 notebooks -apple
答案 0 :(得分:0)
基本上,差异是this和this
根据您的情况,我可以说您需要布尔模式
'+"intel core i5 notebooks" -apple'