SQL / Wordpress - 用于删除注释字段的查询

时间:2010-07-13 22:42:16

标签: mysql sql string wordpress sql-update

有谁知道如何通过运行SQL查询来替换所有注释中的“comment_author_url”字段?

例如,如果此字段为http://google.com,则将其替换为""(空字符串)

1 个答案:

答案 0 :(得分:2)

使用:

UPDATE your_table
   SET comment_author_url = ''
 WHERE comment_author_url = 'http://google.com'