Ever wonder how to remove unwanted string in database column? It's easy!
For example, you have created a "map" table with column "location" and you want to delete the comma.
To delete the comma, you can use the query below:
UPDATE country.map set location = replace( location , ',' , ' ');
After execute the query, the comma should disappear.
3 comments
Clear explanation! Thanks!
Yes indeed! :)
Glad to be able to help both of you! :)
EmoticonEmoticon