表A字段有uid,uname,upwd,code。其中code为a-z这些字母的组合,怎么在第三个字母后插入个a字母??请教
update 表名 set 字段名= substr(字段名,1,3)||'a'||substr(字段名,4)只在Oracle中能用!!