Sqlserver中Replace函数:实现字段中某个字符串批量替换。
注意:强烈建议替换前备份数据库以免发生灾难性后果。
update article set [Content]=replace([content],'$','');
在使用replace函数时,第一个参数一定不要加引号!!!
End of the universe is coding.
Sqlserver中Replace函数:实现字段中某个字符串批量替换。
注意:强烈建议替换前备份数据库以免发生灾难性后果。
update article set [Content]=replace([content],'$','');
在使用replace函数时,第一个参数一定不要加引号!!!