Oracle多表关联中的update语句实际应用

数据库 Oracle
我们今天主要和大家讨论的是 Oracle多表关联中的update语句的实际应用,本文主要是以代码的方式来引出Oracle多表关联中的update语句的实际操作。

以下的文章主要讲述的是 Oracle多表关联中的update语句的实际应用,为了使大家更为仔细的看明白其实际的操作步骤,我们建立了下面的简单模型与构造一部分的测试数据:在某个业务受理子系统BSS中,

客户资料表

 

  1. create table customers  
  2. (  
  3. customer_id number(8) not null,   

 

客户标示

  1. city_name varchar2(10) not null, 

所在城市

  1. customer_type char(2) not null, 

客户类型

 

  1. ...  
  2. )  
  3. create unique index PK_customers on customers (customer_id)  

 

由于某些原因,客户所在城市这个信息并不什么准确,但是在

客户服务部的CRM子系统中,通过主动服务获取了部分客户20%的所在

城市等准确信息,于是你将该部分信息提取至一张临时表中:

 

  1. create table tmp_cust_city  
  2. (  
  3. customer_id number(8) not null,  
  4. citye_name varchar2(10) not null,  
  5. customer_type char(2) not null  
  6. )  

 

1) 最简单的形式

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

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

 

  1. update customers 

set city_name='北京'

 

  1. where customer_id<1000 

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

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

 

  1. update customers a  

使用别名

 

  1. set customer_type='01'  

01 为vip,00为普通

 

  1. where exists (select 1  
  2. from tmp_cust_city b  
  3. where b.customer_id=a.customer_id  
  4. )  

 

3) Oracle 两表(多表)关联update 被修改值由另一个表运算而来

 

  1. update customers a  

使用别名

 

  1. set city_name=(select b.city_name from tmp_cust_city b where b.customer_id=a.customer_id)  
  2. where exists (select 1  
  3. from tmp_cust_city b  
  4. where b.customer_id=a.customer_id  
  5. )   

 

上述的相关内容就是对 Oracle多表关联的update语句的描述,希望会给你带来一些帮助在此方面。

【编辑推荐】

  1. Oracle case的2中常用表达式
  2. Oracle表空间的设置问题的描述
  3. Oracle数据字典的恢复场景
  4. Oracle EXPLAIN PLAN的实际应用经验总结
  5. 修改Oracle默认用户密码有效期时间的实操
责任编辑:佚名 来源: 博客园
相关推荐

2010-05-04 15:15:39

Oracle分页查询

2010-09-17 10:39:36

SQL中

2010-09-27 10:29:14

sql update语

2010-05-10 18:38:08

Oracle分页语句

2009-12-02 19:51:54

PHP Switch语

2010-04-08 17:40:02

Oracle 多表关联

2010-04-08 18:33:46

Oracle VARR

2010-03-30 14:32:38

Oracle Date

2011-08-22 15:47:27

Oracle临时表存储过程

2010-03-29 11:06:22

Oracle Spat

2010-05-06 16:02:42

Oracle SQL

2010-04-09 16:26:53

Oracle join

2010-03-31 17:40:15

Oracle SELE

2010-03-29 15:33:18

Oracle EXP

2010-04-06 16:00:19

Oracle更改表

2010-04-09 13:35:35

Oracle启动

2010-04-21 13:31:11

Oracle时间

2010-04-29 09:16:16

Oracle密码过期处

2010-04-09 09:28:30

Oracle自增字段

2010-04-30 17:50:25

点赞
收藏

51CTO技术栈公众号