Right now, I have:
Upper(tb.name) LIKE Upper('%' + :SearchBox + '%')
With this, I can type a single keyword and if it exists in tb.name, it will return in the results. I would like to be able to type in multiple keywords in the SearchBox, separated by spaces, and return results that contain ALL keywords.
Example: I type in "Ford" in the SearchBox and am returned
Name
2015 Ford SUV Blue
2016 Ford SUV Black
2017 Ford SUV Blue
I would like to be able to type in "Ford Blue" (or any other amount of keywords) to return
Name
2015 Ford SUV Blue
2017 Ford SUV Blue
Any keywords input would be separated by a space. So, if I type in "SUV Blue 2017" it would be "SUV" AND "Blue" AND "2017". Any help is greatly appreciated!