show/hide this revision's text 4 added 427 characters in body

Now that we're on a roll, we can add another REPLACE handle the underscore wildcard. And just for fun, this time, we'll use $ as the escape character.

like '%|' + REPLACE(REPLACE(REPLACE( 'pe%t!r' p_%t!r' ,'!','!!'),'%','!%'),'_','!_) '$','$$'),'%','$%'),'_','$_') + '|%' escape '!'

I prefer this approach to escaping because it works in Oracle and MySQL as well as SQL Server. (I usually use the \ backslash as the escape character, since that's the character we use in regular expresssions. But why be constrained by convention!

those pesky brackets

those pesky brackets

We're So we're not yet done fixing yet, at least for SQL Server. Since pairs of brackets have special meaning, we'll need to escape those as well. If we manage to properly escape the brackets, then at least we won't have to bother with the hyphen - and the carat ^ within the brackets. And we can leave any % and _ characters inside the brackets escaped, since we'll have basically disabled the special meaning of the brackets.

And that function may have some differences in behavior, dependent on the DBMS and version. (A shout out to all you Java developers so keen on being able to use any database engine interchangeably.)

show/hide this revision's text 3 added 2233 characters in body

Let me state right here, that this is not an answer to that the original question. (There are already some demonstrations of that in other answers.) So good answers.

With that said, go ahead and flag this answer, downvote it, mark it as not an answer... do whatever you believe is right.

selected answer

What I want to address here is the approach given in Joel's answer, the one answer "selected" as the right answer.

patching the a hole

like '%|' + REPLACE( 'pe%ter' ,'%','\%') pe\%ter' + '|%' escape '\'

Note that

Now we can match the literal %. Of course, when we have a column name, we're going to need to dynamically escape the wildcard. We can use the REPLACE function finds to find occurrences of the % character and inserts insert a backslash character in front of it. So we can now match a literal 'pe%ter'each one, like this:

So that solves the problem with the % wildcard. Well, not quiteAlmost.

We recognize now that our solution has introduced another problem. We're The escape character. We see that we're also going to need to escape any occurrences of escape character itself. This time, we use the ! as the escape character:

Now that we're on a roll, we can add another REPLACE handle the underscore wildcard.We

select ... where '|p_%t!r|'  like '%|' + REPLACE(REPLACE(REPLACE( 'pe%t!r' ,'!','!!'),'%','!%'),'_','!_) + '|%' escape '!'

I prefer this approach to escaping because it works in Oracle and MySQL as well as SQL Server. SQL Server also allows for wildcard characters to be treated as literals by enclosing them in brackets [].

So we're

We're not yet done fixing yet, since those at least for SQL Server. Since pairs of brackets have special meaning, we we'll need to escape those as well. If we manage to properly escape the brackets, then at least we won't have to bother with the hyphen - and the carat ^ within the brackets, and . And we can leave any % and _ characters inside the brackets escaped, since we'll have basically disabled the special meaning of the brackets.

Finding matching pairs of brackets shouldn't be that hard. It's a little more difficult than handling the occurrences of singleton % and _. (Note that it's not sufficient to just escape all occurrences of brackets, because a singleton bracket is considered to be a literal, and doesn't need to be escaped. The logic is getting a little fuzzier than I can handle without running more test cases.)

conclusion

It's not an unworkable approach. Especially if we

domain knowledge

We may have specialized knowledge of the domain for the column, (i.e. that is, the set of allowable values ) that is enforced for the column.

Absent We may know a priori that the values stored in the column will never contain a percent sign, an underscore, or bracket pairs. In that case, we just include a quick comment that those cases are covered.

The values stored in the column may allow for % or _ characters, but a constraint may require those values to be escaped, perhaps using a defined character, such that the values are LIKE comparison "safe". Again, a quick comment about the allowed set of values, and in particular which character is used as an escape character, and go with Joel's approach.

But, absent the specialized knowledge and a guarantee, it's important for us to at least consider handling those obscure corner cases. Sure there's more , and consider whether the behavior is reasonable and "per the specification"

other issues recap

I believe others have already sufficiently pointed out some of the other commonly considered areas of concern:

  • SQL injection (taking what would appear to be user supplied information, and including that in the SQL text rather than supplying them through bind variables. Using bind variables isn't required, it's just one way convenient approach to skin a cat, but some ways thwart with SQL injection. There are messier other ways to deal

  • optimizer plan using index scan rather than index seeks, possible need for an expression or function for escaping wildcards (possible index on expression or function)

  • using literal values in place of bind variables impacts scalability

  • conclusion

    I like Joel's approach. It's clever. And it works.

    But as soon as I saw it, I immediately saw a potential problem with it, and it's not my nature to let it slide. I don't mean to be critical of the efforts of others. I know many developers take their work very personally, because they invest so much into it and they care so much about it. So please understand, this is not a personal attack. What I'm identifying here is the type of problem that crops up in production rather than testing.

    Again, I do apologize for my failure to abide rules and conventions of stackoverflow, posting here what is clearly not an answer to the OP questionhere.

    show/hide this revision's text 2 additional clarification,

    This isn't

    Let me state right here, that this is not an answer to that question. (There are already some demonstrations of that in other answers.) So flag itthis answer, downvote it, delete it, mark it as not an answer, whatever.)answer... do whatever you believe is right.

    What I want to address here is the approach given in Joel's selectedanswer, the one "selected" as the right answer. It Joel's approach is clever, and . And it works reasonably. It exhibits , it's going to exhibit predictable behavior and predictable performance, given "normal" values, and with the normative edge cases: , such as NULL and the empty string. And it may be sufficient for a particular application.

    But in terms generalizing this approach, we let's also need to consider the more obscure corner cases, like when the Name column contains a wildcard character (as recognized by the LIKE predicate.) The wildcard character I see most commonly used wildcard character is a % (percent), so we a percent sign.). So let's deal with that firsthere now, and later go on to othersother cases.

    some problems with % character

    Consider a Name value of 'pe%ter'. (For the examples here, I use a literal string value in place of the column name.) A row with that a Name value of `'pe%ter' would be returned by a query of the form:

    but that same row will not be returned if the order of the search terms is reversed:

    (We're using a literal in the examples here, in place of the column name, just for demonstration.)

    The observed behavior we observe is kind of odd. Changing the order of the search terms in the list changes the result set.

    It almost goes without saying that we might not want pe%ter to match peanut butter, no matter how much he likes it.

    obscure corner case

    (Yes, it's I will agree that this is an obscure case, and . Probably one that is not likely to be tested. We wouldn't expect a wildcard in a column value. The application We may prevent itassume that the application prevents such a value from being stored. But in my experience, but I've rarely seen a database constraint that specifically disallowed wildcard characters recognized by or patterns that would be considered wildcards on the right side of a LIKE comparison operator.

    patching the hole

    One approach to patching this hole is escaping to escape the % wildcard character:. (For anyone not familiar with the escape clause on the operator, here's a link to the SQL Server documentation.

    We also recognize

    Note that the REPLACE function finds occurrences of the % character and inserts a backslash character in front of it. So we need to can now match a literal 'pe%ter'

    select ... where '|pe%ter|'  like '%|' + REPLACE( 'pe%ter' ,'%','\%') + '|%' escape '\'

    So that solves the other problem with the % wildcardcharacter '_', and . Well, not quite.

    escape the specified escape

    We recognize now that our solution has introduced another problem. We're also going to need to escape any occurrences of escape character itself.:

    like '%|' + REPLACE(REPLACE(REPLACEREPLACE(REPLACE( 'pe%t_r' pe%t!r' ,'!','!!'),'%','!%'),'_','!_') '!','!!'),'%','!%') + '|%' escape '!'

    the underscore too

    Now that we're on a roll, we can add another REPLACE handle the underscore wildcard. We prefer this approach to escaping because it works in Oracle and MySQL as well as SQL Serversupport .SQL Server also allows for LIKE comparisons goes furtherwildcard characters to be treated as literals by enclosing them in brackets [].

    those pesky brackets

    So we're not yet done fixing, with since those brackets have special meaningfor braces [], we need to escape those as well. If we manage to properly escape the brackets, then at least we won't have to bother with the hyphen - and the carat ^ within the brackets, and we can leave any % and _ characters escaped, since we'll have basically disabled the special meaning of the brackets.

    Finding matching pairs of brackets shouldn't be that hard. It's a little more difficult than handling the singleton % and _. (Note that it's not sufficient to just escape all occurrences of brackets, because a singleton bracket is considered to be a literal, and doesn't need to be escaped. The logic is getting a little fuzzier than I can handle without running more test cases.)

    inline expression gets messy

    That inline expression in the hyphenSQL is getting longer and uglier. If We can probably make it work, but heaven help the poor soul that comes behind and has to decipher it. As much of a fan I am for inline expressions, I'm inclined not use one here, mainly because I don't want to have to leave a comment explaining the reason for the mess, and apologizing for it.

    a function where ?

    Okay, so, if we don't handle that as an inline expression in the SQL(which I don't think is the best approach), we're looking at the closest alternative we have is a user defined function. That And we know that won't speed things up any (unless we can define an index on it, like we could with Oracle.) If we've got to create a function, we might better do that in the code that calls the SQL statement.

    Not

    conclusion

    It's not an unworkable approach. But with a database that doesn't restrict Especially if we have specialized knowledge of the domain (that is, i.e. the allowed set of allowable values) in a that is enforced for the column.

    Absent that knowledge, it's important for us to at least consider handling those corner cases. There's Sure there's more than one way to skin a cat, but some ways are messier than others.

    We've

    Yes, I've gone far afield from the original question. But where else to leave this note concerning what I consider to be an important issues issue with the "selected" answer for a selected answer..question.

    My hope is that someone will find this post to be of some use.

    apology

    I do apologize for my failure to abide rules and conventions of stackoverflow, posting what is clearly not an answer to the OP question here.

    show/hide this revision's text 1