TableA包含以下内容
key | value
------------
1 | this is a string
2 | another string
如果我这样做
SELECT * FROM TableA WHERE value LIKE '%string%'
每次都可以正常工作,以及任何其他子字符串查找。但由于某种原因,第一个词永远不会匹配,即:
SELECT * FROM TableA WHERE value LIKE '%this%' OR value LIKE '%another%'
这是正常的吗?我该如何解决这个问题?我已经尝试了额外的OR
设置,以匹配'this%'
和'another%'
,但它没有帮助。