查找并替换整个mysql数据库
2021-11-20 00:00:00
mysql
我想在整个数据库中进行查找和替换,而不仅仅是一个表.
i would like to do a find and replace inside an entire database not just a table.
如何更改下面的脚本以使其正常工作?
How can i alter the script below to work?
update [table_name] set [field_name] = replace([field_name],'[string_to_find]','[string_to_replace]');
我只使用星号吗?
update * set [field_name] = replace([field_name],'[string_to_find]','[string_to_replace]');
推荐答案
sqldump到文本文件,查找/替换,重新导入sqldump.
sqldump to a text file, find/replace, re-import the sqldump.
将数据库转储到文本文件mysqldump -u root -p[root_password] [database_name] >转储文件名.sql
在对数据库进行更改后恢复数据库.mysql -u root -p[root_password] [database_name] <转储文件名.sql
相关文章