sqlserver数据库替换字段的部分字符串

由于数据库中有业务应用存储了包含系统域名的url作为字段数据,现在更换新的域名导致部分业务不可用,需要将字段中的域名替换为新域名。
update 表名 set 字段=replace(字段,‘替换的部分’,‘替换后的字符串’);

update [dbo].[AAAAAATEST] set deptpkid = REPLACE(string_expression, string_pattern, string_replacement)
update [dbo].[AAAAAATEST] set deptpkid = REPLACE(deptpkid, '82', '替换') where deptpkid like '%82'

update table_name set image=replace( image, 'http://33.dd.dd.33', 'http://yuebei.web66.cn');   
-- 将表中字段所有的“http://33.dd.dd.33”替换成“http://yuebei.web66.cn”;

你可能感兴趣的:(SQL,server,sql,replace)