假设你要修改的表为A; 数据来源提供的表为B
你的意思是说A的某一字段如OP的值全部由B表提供,也就是将B表的某一字段值完全填入A表的OP字段么?

解决方案 »

  1.   

    update a ser col_name=(select col_name from b where id=a.id)
      

  2.   

    字段操作
    添加:
    alter table tbl_name add(addcol varchar2(10);
    修改:
    alter table tbl_name modify(addcol varchar2(20);
    删除:
    alter table tbl_name drop(addcol);
    -------------------------------------------------------
    改完之后,再 更新