oracle表关联update和表建立索引

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle表关联update和表建立索引相关的知识,希望对你有一定的参考价值。

  1. update A a set a.A2 = (select b.B2 from B b where b.B1=a.A1) where   
  2. exists (select 1 from B where B.B1=a.A1)  

 -- Create/Recreate indexes 
create index t_source_phase_01 on t_source_phase (lineid)
  tablespace COMMON_CABLE
  pctfree 10
  initrans 2
  maxtrans 255
  storage
  (
    initial 64K
    next 1M
    minextents 1
    maxextents unlimited
  );

以上是关于oracle表关联update和表建立索引的主要内容,如果未能解决你的问题,请参考以下文章

Oracle Update 语句语法与性能分析 - 多表关联

[oracle]两表关联的update操作问题

oracle多表关联update

重修课程day40(mysql四之表与表关联和表操作)

update 两个表关联 更新

ORACLE多表关联UPDATE 语句