MySQL query to replace underscores in a column with spaces
by Subramanian[ Edit ] 2014-04-03 11:57:04
MySQL query to replace underscores in a column with spaces:
update tags set tagName = replace(tagName, '-', ' ');
You can replace any other with this method.