I've got a query splitting phrase to words and showing result:
SELECT (...) WHERE 'name' LIKE '%word1%' AND 'name' LIKE '%word2%' ... etc
My problem is that when I type 'word1 word2' than the results are different than for 'word2 word1'.
Why is that ? What causes it and how to fix it ?