如何使选择查询匹配具有未知后缀的单词?

时间:2013-11-06 11:57:15

标签: sql sql-server

对于此查询:

SELECT * FROM TABLE WHERE name LIKE'%testt%'或name LIKE'%tests%';

请告诉我如何选择搜索单词test +结尾单词上的一个未知符号?

示例行:

Hello tests Words
Hello tested Words
Hello testing Words

结果应该是行Hello tests Words

1 个答案:

答案 0 :(得分:4)

使用_符号。它匹配任何一个字符,其中%匹配任何符号长度。

WHERE name LIKE '% test_ %'