MySQL query to replace underscores in a column with spaces

by Subramanian 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.
939
like
0
dislike
0
mail
flag

You must LOGIN to add comments