gpt4 book ai didi

MySQL 替换转义错误

转载 作者:行者123 更新时间:2023-11-29 08:01:51 25 4
gpt4 key购买 nike

我正在尝试进行替换,但收到 1064 错误。

UPDATE `wp_posts` SET post_content = replace(post_content, ‘<p style="text-align: center">Click here to see more’, ‘<p style="text-align: center">See more’)

我猜我需要逃避一些事情......

最佳答案

我认为您只是使用了错误的撇号。使用 ' 代替 ':

UPDATE `wp_posts` 
SET post_content = replace(post_content,
'<p style="text-align: center">Click here to see more',
'<p style="text-align: center">See more')

关于MySQL 替换转义错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23620416/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com