Searching a column for all words, any words, or exact phrase in a SQL Table
"Here’s one way to implement a search, similar to Google’s, if you don’t want to (or can’t) use full text indexing. This allows you to pass a string of words, and indicate that either ALL words must match, ANY must match, or the exact string must match."
It is useful to read the comments about collation errors etc.
Searching a column for all words, any words, or exact phrase in a SQL Table


