不是100%肯定如何标题,但这是我的问题
说我想在字符串中找到多个单词,例如:"AHU Replacement"
现在用户可以将其作为
存储在数据库中"Replacement of AHU"
"Replacement of the AHU"
"The AHU needs Replacing"
并且很可能在很多方面,所以如何编写一个可以扫描表并根据此搜索字符串检测所有这些的查询作为示例"AHU Replacement"
,它将存储在表本身中作为关键搜索
此代码可以找到上面的前两个字符串,但是" Replacing
"的变化。和" Replacement
"是一个问题:
SELECT * FROM ProjectNotes where Notes like '%AHU%' and Notes like '%replacement%'