-1

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

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

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

2 回答 2

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%';
于 2013-01-29T19:46:35.887 回答
1

能这么容易吗?

UPDATE my_table
SET Field1 = 'http://www.mysite.com'
WHERE Field1 = 'http://123.456.789.000'

祝你好运。

于 2013-01-29T19:46:38.990 回答