原来字段内容;
现在欲把字符'A'替换为'H' ;sql如下,使用 REPLACE 函数即可;
update pt1 set stationCD = REPLACE(stationCD, 'A','H')
结果;