[mysql] how to find a value in the row?
- by www.yegorov-p.ru
Hello.
I have pretty big table with lots of columns. I want to find all lines, with some word in it.
Sure, i can write something like
SELECT * FROM table WHERE 'blablabla'
IN col1 OR 'blablabla' IN col2 OR ...
But I think it's not the best solution =))