So, when I run a query like:
SELECT * FROM table_name WHERE column1 LIKE "%term%";
It normally works -- however, when I use two columns -- such as:
SELECT * FROM table_name WHERE column1, column 2, column3, column4 LIKE "%term%"; -- it blows up in my face.
Any reason why?
Guido