Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How to do a regular expression replace in MySQL?

Hi,

please help me in mysql regular expression to remove all non alpha numeric characters from a column data.

Thanks in advance.

share|improve this question

marked as duplicate by James C, davek, Bill the Lizard May 18 '11 at 11:28

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

There was no regexp_replace() function in MySQL last I checked. (If it was added recently, be wary of using it if your app needs to be portable.)

What you can do, however, is fetch rows that don't qualify using a regexp:

select [fields] from [table]
where yourfield not regepx '[[:alnum:][:space:][:punct:]]'

http://dev.mysql.com/doc/refman/5.5/en/regexp.html

share|improve this answer

MYSQL REGEX can only match a pattern. It can not replace or remove any characters.

Is it possible to use PHP to do the operation?

$result = mysql_query('SELECT id, column FROM table');

$sql = '';
while( $row = mysql_fetch_assoc ($result) ) {
    $sql .= "UPDATE table SET column='"
        . mysql_real_escape_string( preg_replace('/[[:alnum:]]/', '', $row['column']) )
        . "' WHERE id = ". intval($row['id']) . "\n";
}

mysql_query($sql);

Atleast I do believe you can use POSIX..

share|improve this answer
hi i need it in mysql not in php syntax – praneeth May 18 '11 at 10:44

Not the answer you're looking for? Browse other questions tagged or ask your own question.