How to replace characters in mysql: use update to replace, the code is [UPDATE table name SET the field you want to replace = replace (the field you want to replace, ' ', '')].
##More related free learning recommendations: mysql tutorial(Video)
How to replace characters in mysql:
1. There are many spaces in the searched data. It will be particularly inconvenient if you export the data. Just use a single update statement. For example, if you remove the spaces, you can write it asUPDATE table name SET The field you want to replace = replace(the field you want to replace, ' ', '')
.
The above is the detailed content of How to replace characters in mysql. For more information, please follow other related articles on the PHP Chinese website!