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.