How can I escape square brackets in a LIKE clause?

后端 未结 10 2054
被撕碎了的回忆
被撕碎了的回忆 2020-11-22 14:28

I am trying to filter items with a stored procedure using like. The column is a varchar(15). The items I am trying to filter have square brackets in the name.

For ex

10条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-22 14:44

    Use Following.

    For user input to search as it is, use escape, in that it will require following replacement for all special characters (below covers all of SQL Server).

    Here single quote "'" is not taken as it does not affect like clause as It is a matter of string concatenation.

    "-" & "^" & "]" replace is not required as we are escaping "[".

    String FormattedString = "UserString".Replace("ð","ðð").Replace("_", "ð_").Replace("%", "ð%").Replace("[", "ð[");
    

    Then, in SQL Query it should be as following. (In parameterised query, string can be added with patterns after above replacement).

    To search exact string.

    like 'FormattedString' ESCAPE 'ð'
    

    To search start with string

    like '%FormattedString' ESCAPE 'ð'
    

    To search end with string

    like 'FormattedString%' ESCAPE 'ð'
    

    To search contain with string

    like '%FormattedString%' ESCAPE 'ð'
    

    and so on for other pattern matching. But direct user input needs to format as mentioned above.

提交回复
热议问题