ORACLE多表关联的update语句

时间:2013-11-25 03:18:38
【文件属性】:
文件名称:ORACLE多表关联的update语句
文件大小:16KB
文件格式:DOCX
更新时间:2013-11-25 03:18:38
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 )

网友评论