要为LIKE运算符通配符搜索转义的T-SQL特殊字符

时间:2013-10-23 20:42:43

标签: sql-server replace special-characters sql-like

SQL Server具有LIKE运算符来处理通配符搜索。我的客户希望在应用程序的用户界面中使用“*”(星号)字符作为通配符。我只是想知道是否有任何标准字符我需要担心(在SQL Server中用作特殊字符)除了“%”(百分比)字符本身之前执行LIKE威尔卡搜索,以防他们的关键字包含“%”并且需要在实际字符串中找到“%”。如果是这样,他们是什么?

所以请假设[table1]。[column1]在文本字符串中永远不会有“*”(星号)!

这是我到目前为止所拥有的。我是否需要处理标准"%"字符和自定义"*"

以外的其他情况
-- custom replacement
select REPLACE('xxx*xxx', '*', '%')

-- standard replacements
select REPLACE('xxx%xxx', '%', '[%]')
select REPLACE('xxx_xxx', '_', '[_]')  -- ???
select REPLACE('xxx[xxx', '[', '[[]')  -- ???
select REPLACE('xxx]xxx', ']', '[]]')  -- ???

示例:

SET @p = REPLACE(REPLACE(REPLACE(REPLACE(REPLACE(@p, ']', '[]]'), '[', '[[]'), '_', '[_]'), '%', '[%]'), '*', '%')

SELECT 'xxxxxxxxx%xxxxxx' LIKE @p

SELECT [table1].[column1] LIKE @p

2 个答案:

答案 0 :(得分:10)

看起来你得到了所有这些,虽然我认为逃避']'是不必要的。从技术上讲,你应该只需要逃离开口括号('[')。

DECLARE @Table1 TABLE
(
   Column1 VARCHAR(32) NOT NULL PRIMARY KEY
);

INSERT @Table1(Column1)
VALUES
   ('abc%def'),
   ('abc_def'),
   ('abc[d]ef'),
   ('abc def'),
   ('abcdef');

DECLARE @p VARCHAR(32) = 'abc*]*';

DECLARE @Escaped VARCHAR(64) = REPLACE(@p, '[', '[[]');
SET @Escaped = REPLACE(@Escaped, '_', '[_]');
SET @Escaped = REPLACE(@Escaped, '%', '[%]');
SET @Escaped = REPLACE(@Escaped, '*', '%');

SELECT T.Column1
FROM @Table1 T
WHERE T.Column1 LIKE @Escaped;

答案 1 :(得分:2)

看起来不错!! - 查看与LIKE子句相关的所有信息here

另外List of special characters for SQL LIKE clause