Mysql – Sql Query to remove special Characters

MySQL

I am having a varchar field in mysql table with special characters. I want to remove all those special characters in that string Using MYSQL QUERY.

Best Answer

MySQL doesn't support such a query. Your best shot within a MySQL query is a lot of the following:

update TABLENAME
set FIELDNAME = replace(FIELDNAME,'_','')