没有替换。 谢谢
\
是MySQL的逃生字符。因此,您的命令应该是:
UPDATE articles SET body = REPLACE(body, '"', '\\"') WHERE body LIKE '%"%'
查看the the documentation