码迷,mamicode.com
首页 > 数据库 > 详细

oracle表关联update和表建立索引

时间:2016-09-27 23:20:23      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:

  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和表建立索引

标签:

原文地址:http://www.cnblogs.com/yi-wuxia/p/5914581.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!