对于此查询:
SELECT * FROM TABLE WHERE name LIKE '% testt %' OR name LIKE '% tests %';
请告诉我如何选择搜索词的位置test
+结束词上的一个未知符号?
示例行:
Hello tests Words
Hello tested Words
Hello testing Words
结果应该得到行Hello tests Words
对于此查询:
SELECT * FROM TABLE WHERE name LIKE '% testt %' OR name LIKE '% tests %';
请告诉我如何选择搜索词的位置test
+结束词上的一个未知符号?
示例行:
Hello tests Words
Hello tested Words
Hello testing Words
结果应该得到行Hello tests Words