2012年8月16日
摘要: 为了方便起见,建立了以下简单模型,和构造了部分测试数据: 在某个业务受理子系统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) 由于某些原因,客户所在城市这个信息并不什么准确,但是在客户服务部的C... 阅读全文
posted @ 2012-08-16 16:11 垦荒牛 阅读(1793) 评论(0) 推荐(0) 编辑