当前位置: 代码迷 >> SQL >> 轮换sql server 中的text类型中内容的关键词
  详细解决方案

轮换sql server 中的text类型中内容的关键词

热度:68   发布时间:2016-05-05 13:49:22.0
替换sql server 中的text类型中内容的关键词
留个笔记
update test set test.content =test1.b from test, (select id as a,REPLACE(CAST( content as varchar),'日本','日本鬼子')as b from test) test1where test.id =test1.a 
  相关解决方案