博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
oracle表关联update和表建立索引
阅读量:5264 次
发布时间:2019-06-14

本文共 370 字,大约阅读时间需要 1 分钟。

  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
  );

转载于:https://www.cnblogs.com/yi-wuxia/p/5914581.html

你可能感兴趣的文章
类和结构
查看>>
CSS3选择器(二)之属性选择器
查看>>
adidas crazylight 2018 performance analysis review
查看>>
typeset shell 用法
查看>>
python 之 循环语句
查看>>
心得25--JDK新特性9-泛型1-加深介绍
查看>>
[转]ceph网络通信模块_以monitor模块为例
查看>>
HDOJ 1754 I Hate It(线段树基本操作)
查看>>
latex tree
查看>>
安装NVIDIA驱动时禁用自带nouveau驱动
查看>>
HDU-1255 覆盖的面积 (扫描线)
查看>>
css3学习01
查看>>
【USACO】 奶牛会展
查看>>
ActiveMQ笔记之点对点队列(Point-to-Point)
查看>>
继承和多态
查看>>
Dijkstra+计算几何 POJ 2502 Subway
查看>>
修复IE不能执行JS的方法
查看>>
程序员究竟该如何提高效率zt
查看>>
希尔排序法(缩小增量法)
查看>>
PHP编程基础学习(一)——数据类型
查看>>