SQL 常用语句

替换表中某个字段中的某些字符:(将ConfigValue列中的A值替换为B)

update SysConfigParams set ConfigValue=replace(ConfigValue,'A','B');







原文地址:https://www.cnblogs.com/sschen/p/3607282.html