我试图自己解决这个问题(我查看了this 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;
感谢您提供任何指导!