我试图自己解决这个问题(我查看了这个stackoverflow 问题),但我碰壁了!
我想做一个“查找和替换”mySQL 查询,将记录中的 html 链接转换为新格式。我认为最简单的方法是创建一个要替换的术语字典。问题是我不知道字典的语法。这是基本的查询思想:
/*dictionary of terms to replace*/
@dic = '/site1', '/site2,' '/site3,'
/*create dictionary of replacement terms*/
@rep = '/newsite1', '/newsite2', '/newsite3'
UPDATE table_name
SET body = REPLACE(body, @dic, @replace)
where content_id = 11;
感谢您提供的任何指导!