在SQL中如何对ntext类型字段用replace

update [表] set [字段]=replace(cast([字段] as varchar(8000)),'被替换的字符串','替换成的字符串')
 

你可能感兴趣的:(sql)