例如表结构
create table tab_1
(
  T1 VARCHAR2(100)
)我想
update tab_1 set T1的前3个字符='abc';update tab_1 set T1的前10-20个字符='123456';
这个怎么写