标签: mysql sql string wordpress sql-update
有谁知道如何通过运行SQL查询来替换所有注释中的“comment_author_url”字段?
例如,如果此字段为http://google.com,则将其替换为""(空字符串)
http://google.com
""
答案 0 :(得分:2)
使用:
UPDATE your_table SET comment_author_url = '' WHERE comment_author_url = 'http://google.com'