替换字符串的特定部分

时间:2013-01-29 19:40:03

标签: sql sql-server-2008

在名为my_table的表中,我需要对表内容中的特定字符串执行查找/替换:

String to search for: 'http://123.456.789.000'

String to substitute: 'http://www.mysite.com'

2 个答案:

答案 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'
祝你好运。