I have a table which contains address information. Some email addresses are incorrect and have a " or a "[mailto:" in front of them. I can select them with the following:
select * from address
where lower(email) like (' or lower(email) like ('[mailto%')
I have about 1700 to update. Is there an easy way to strip those characters off of the front of the address? Or will I be better off to pass them to a perl script and update them there?
select * from address
where lower(email) like (' or lower(email) like ('[mailto%')
I have about 1700 to update. Is there an easy way to strip those characters off of the front of the address? Or will I be better off to pass them to a perl script and update them there?