使用replace替换字段中的字符

如:替换production表中的specification字段中的两个空格为一个空格:

update production set  specification =replace(specification,'  ',' ') 

 

相关文章: