Hi!
I've to search all columns of a table after a given text.
As the table has 34 columns i want to know if there is a sql statement which searches over all columns.
So that i dont have to use
SELECT id from tableA where columnA='test' OR columnB='test' [...] OR columnZ='test'
something like
SELECT id from tableA WHERE somewhereInSomeColum='test'
Thanks in advance!!!