对于此查询:
SELECT * FROM TABLE WHERE name LIKE'%testt%'或name LIKE'%tests%';
请告诉我如何选择搜索单词test
+结尾单词上的一个未知符号?
示例行:
Hello tests Words
Hello tested Words
Hello testing Words
结果应该是行Hello tests Words
答案 0 :(得分:4)
使用_符号。它匹配任何一个字符,其中%匹配任何符号长度。
WHERE name LIKE '% test_ %'