Oracle Update多张表

发表于:2010-6-29 10:36

字体: | 上一篇 | 下一篇 | 我要投稿

 作者:未知    来源:51Testing软件测试网采编

  ORACLE UPDATE 语句语法与性能分析的一点看法

  为了方便起见,建立了以下简单模型,和构造了部分测试数据:

  在某个业务受理子系统BSS中,

  --客户资料表

create table customers
(
customer_id number(8) not null,   -- 客户标示
city_name     varchar2(10) not null,   -- 所在城市
customer_type char(2)    not null,   -- 客户类型
...
)
create unique index PK_customers on customers (customer_id)

  由于某些原因,客户所在城市这个信息并不什么准确,但是在客户服务部的CRM子系统中,通过主动服务获取了部分客户20%的所在城市等准确信息,于是你将该部分信息提取至一张临时表中:

create table tmp_cust_city
(
customer_id number(8) not null,
citye_name     varchar2(10) not null,
customer_type   char(2) not null
)

  1) 最简单的形式

  --经确认customers表中所有customer_id小于1000均为'北京'

  --1000以内的均是公司走向全国之前的本城市的老客户:)

update customers
set city_name='北京'
where   customer_id<1000

  2) 两表(多表)关联update -- 仅在where字句中的连接

  --这次提取的数据都是VIP,且包括新增的,所以顺便更新客户类别

update customers   a    -- 使用别名
set customer_type='01' --01 为vip,00为普通
where   exists (select 1
from tmp_cust_city b
where   b.customer_id=a.customer_id
)

31/3123>
《2023软件测试行业现状调查报告》独家发布~

关注51Testing

联系我们

快捷面板 站点地图 联系我们 广告服务 关于我们 站长统计 发展历程

法律顾问:上海兰迪律师事务所 项棋律师
版权所有 上海博为峰软件技术股份有限公司 Copyright©51testing.com 2003-2024
投诉及意见反馈:webmaster@51testing.com; 业务联系:service@51testing.com 021-64471599-8017

沪ICP备05003035号

沪公网安备 31010102002173号