I wonder how I can mount a SQL as portable as possible to query for all columns of a table for a specific phrase, like:
Table
ID | Name
try this
Select * FROM table WHERE text LIKE "%text%" OR date LIKE "%2010%" OR Name LIKE "%augusto%"
if you want them all together then use AND
Select * FROM table WHERE text LIKE "%text%" AND date LIKE "%2010%" AND Name LIKE "%augusto%"