I am trying to write a query using a wildcard that will return the results of terms put into a search box. It works fine if someone searches for terms in a specific order. For example, if someone searches "Soils Phoenix" it will return the results fine if the title is like "Map of Soils Pheonix." However, if the search is "Phoenix Soils" it returns no results. I want to match all of the terms, regardless of the order. It should also be able to take any number of terms not just two.
The query that I am using is: WHERE Title LIKE '%searchterm%'
Any advice would be appreciated.