update A t set t.B=substr(t.B,0,4)||'3'||substr(t.B,6) where t.B like 'C%';
update A set B = INSERT(B,5,1,3) where B like 'c%' ;