关于sql replace函数替换ntext类型问题
时间:2011-04-11 来源:骷髅人
由于ntext类型不能直接用replace函数替换,
所以要把该字段转换成NVARCHAR(MAX)类型,
例如:
update table set text=replace(CAST(text AS NVARCHAR(MAX)),'123456',asd)
相关阅读 更多 +
时间:2011-04-11 来源:骷髅人
由于ntext类型不能直接用replace函数替换,
所以要把该字段转换成NVARCHAR(MAX)类型,
例如:
update table set text=replace(CAST(text AS NVARCHAR(MAX)),'123456',asd)