update Table
set content= replace(content,‘222‘,‘‘)
ERROR
更改为
update Table
set content=replace(cast(content as varchar(8000)),‘22‘,‘‘)
原文地址:https://www.cnblogs.com/wilsons/p/11289110.html
时间: 2024-10-22 08:34:59
update Table
set content= replace(content,‘222‘,‘‘)
ERROR
更改为
update Table
set content=replace(cast(content as varchar(8000)),‘22‘,‘‘)
原文地址:https://www.cnblogs.com/wilsons/p/11289110.html