我想为我的网站制作一个搜索工具。
如果我搜索一个短语,我希望它搜索多个列
例如,如果我搜索 dewalt Drill 并且标题有作品 dewalt 电钻,我希望它出现。
另外,如果我搜索 dewalt 钻头并且瓷砖有 dewalt 并且描述有钻头,我希望它出现。
但搜索的所有单词必须包含在任何字段组合中。
有人可以帮我查询吗?
目前:
{Select * from products where sku like '%{$searchwords}%' or title like '%{$searchwords}%' or desc like '%{$searchwords}%}