大家好日子! 如何在mysql db中更改类似的内容 href =“/ with href =”http:// something /。我有“。
的问题谢谢。
答案 0 :(得分:1)
UPDATE table SET column=REPLACE(column,'oldstring','newstring')
答案 1 :(得分:0)
如果您正在尝试处理双引号,我认为您有两个简单的选择:
1)用单引号将它们包裹起来:
UPDATE my_table
SET my_field = 'href="http://mysite...something/'
WHERE my_field = 'href="http:/';
2)用这样的反斜杠逃脱它们:
UPDATE my_table
SET my_field = "href=\"http://example.com/\""
WHERE my_field = "href=\"http:/";