oracle的replace函数更新字段内容的例子 把表格t_b_tablename中的字段sppic 中的内容中所有包含"abc”的字符串都改为"aaa“update t_b_tablename t set t.sppic=replace(t.columnname,'abc','aaa');