在名为my_table
的表中,我需要对表内容中的特定字符串执行查找/替换:
String to search for: 'http://123.456.789.000'
String to substitute: 'http://www.mysite.com'
答案 0 :(得分:2)
伊克。
UPDATE dbo.my_table
SET col = REPLACE(col, 'http://123.456.789.000', 'http://www.mysite.com')
WHERE col LIKE '%http://123.456.789.000%';
答案 1 :(得分:1)
难道这很容易吗?
UPDATE my_table
SET Field1 = 'http://www.mysite.com'
WHERE Field1 = 'http://123.456.789.000'
祝你好运。