替换MySQL中的所有字段
我需要使用 REPLACE
命令替换表列中的一些字符。
我知道 REPLACE 命令需要一个列名,然后是要更改的文本(在下面的示例中为“a”字符)和新文本(在下面的示例中为“e”字符) )。
UPDATE my_table SET my_column = REPLACE (my_column,'a','e' );
因此,执行此命令会将 my_table
表的 my_column
列中出现的所有“a”更改为“e<” /strong>' 字符。
但是,如果我需要对每一列而不只是一列执行 REPLACE 命令怎么办?这可能吗?
谢谢
I need to replace some chars in the columns of a table, by using the REPLACE
command.
I know that the REPLACE
command needs a column name, then the text to change (in the following example, the 'a' char) and the new text (in the following case, the 'e' char).
UPDATE my_table SET my_column = REPLACE (my_column,'a','e' );
So that executing this command will change all the 'a' occurrences in the my_column
column of the my_table
table with the 'e' char.
But what if i need to execute the REPLACE
command for every column and not just for one? Is this possible?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用以下 SQL 查询生成需要替换所有列中的值的 SQL 查询。
执行此 SQL 查询后,只需运行所有查询即可替换所有值。
经过一些谷歌搜索后未经测试
创建一个具有这样核心的存储过程。它可以接受表的名称、要查找的值和要替换的值。
主要思想是使用:
请参阅下面的部分代码(未经测试)。
Use the following SQL query to generate the SQL queries that you need to replace a value in all columns.
After executing this SQL query simply run all queries to replace all values.
Untested after some googling
Create a stored procedure with a core like this. It can accept the name of the table, the value to find and the value to replace for.
The main idea is to use:
See partial code (untested) below.
我做了一个小改动:
它将使用 TABLENAME 变量(只需少输入一点)——所以你只需要替换大写字母中的内容。
另外,我一开始也不明白,但这只会输出一个 SQL 查询列表,然后您必须执行该列表才能实际替换代码。希望这有帮助...
I made one minor change:
Which will use the variable for TABLENAME (just a bit less typing) - so you only need to replace the stuff in caps.
Also, I didn't understand at first, but this will only output a list of SQL Queries which you then have to execute to actually replace the code. Hope this helps...
这对于一些 PHP 来说是可行的,因为 MySQL 的东西通常包含 PHP。
已测试并工作:)
This will do the trick with some PHP since MySQL stuff often includes PHP.
Tested and working :)
你不能做你想做的事。如果是我,我会获取列名称列表,并在编辑器中进行快速正则表达式搜索和替换。
查找:(.+)
替换:UPDATE my_table SET \1 = REPLACE (\1,'a','e' );
You can't do what you want. If it was me, i'd take a list of column names and in my editor do a quick regex search and replace.
Find: (.+)
Replace: UPDATE my_table SET \1 = REPLACE (\1,'a','e' );