oracle表关联update和表建立索引
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle表关联update和表建立索引相关的知识,希望对你有一定的参考价值。
- update A a set a.A2 = (select b.B2 from B b where b.B1=a.A1) where
- 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和表建立索引的主要内容,如果未能解决你的问题,请参考以下文章