I have a table, contacts, that has a dozen columns or so. I want to identify each row in which at least one column contains a regular expression. I'm wondering if it's possible to do something like this:
select * from contacts where * like '%re%';
instead of this:
select * from contacts where last_name like '%re%' or first_name like '%re%' or ... ;
Is this possible?