I need a selection that would return results like this:
SELECT * FROM MyTable WHERE Column1 CONTAINS 'word1 word2 word3'
Furthermore, I need all outcomes, for example, this incorporates strings with 'word2 word3 word1' or 'word1 word3 word2' or some other mix of the three.
All words should be in the outcome.