I have a mysql table with a column that has phone numbers in it - some aren't really phone numbers, which I want to find out by firing a single query that says something like "set all phone numbers to NULL where the phone number consists of other characters than 0-9 and '+'"
So far I have come up with the following, but do not know how to add tolerance for '+':
$query="UPDATE table SET phone='NULL' WHERE phone REGEXP ('[0-9]')!=1";
mysql_query($query);
Does anybody know how to tolerate '+' in that query? Also, the '+' needs to be at the beginning of the phone number.
Thank you!
Charles
\+doesn't work? – hjpotter92 Jul 14 '12 at 11:46