把mssql数据库中的NC_SoftList表中的downaddress列下面的“ABC”全部替换成“DEF”。
SQL语句应该如何写呢?
最近答案
update NC_SoftList set downaddress=replace(convert(varchar(200),downaddress),'abc','def')
把mssql数据库中的NC_SoftList表中的downaddress列下面的“ABC”全部替换成“DEF”。
SQL语句应该如何写呢?
最近答案
update NC_SoftList set downaddress=replace(convert(varchar(200),downaddress),'abc','def')