Given a set of space delimited search terms like "winchester hotel", how can I search a column to see if it includes all of the words without using either full-text or dynamic SQL?
Annoyingly, I cannot use fulltext indexing in this instance as I can only search the View, which cannot be indexed itself due to having no possible unique index of it's own.
I've definitely achieved this before and I seem to recall it involved inserting the search words in to a table variable.