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 =))
UPD Of course, it's bad database design, I know it. =) I did not created that table, i've just have to parse some values from it. ;)