下载此文档

某送水公司的送水系统.docx


文档分类:建筑/环境 | 页数:约31页 举报非法文档有奖
1/31
下载提示
  • 1.该资料是网友上传的,本站提供全文预览,预览什么样,下载就什么样。
  • 2.下载该文档所得收入归上传者、原创者。
  • 3.下载的文档,不会出现我们的网址水印。
1/31 下载此文档
文档列表 文档介绍
学号
某送水公司的送水系统》
课程设计报告
题 目 : 某送水公司的送水系统
专 业 : 网络工程
班级:
姓名:
指导教师:
成绩:
计算机学院
2017 年 12 月 8 日
设计内容及要求
有关信息
组成:产品编号、产品名称、生产商、生产日期、产品种类、进货 价格、销售价格
数据结构:订单
含义说明:是送水系统矿泉水交易依据的数据结构,定义了一个订 单的有关信息
组成:订单编号、客户编号、商品编号、订单数量、订单日期、订 单处理情况、总金额
数据结构:供应商 含义说明:是送水系统提供货源的数据结构,定义了一个供应商的 有关信息
组成:供应商编号、单位名称、地址、电话
数据结构:费用
含义说明:是送水系统订单里包含的一部分数据结构,定义了一个 费用的有关信息
组成:费用编号、付费方式、已付、金额
数据结构:仓库 含义说明:是送水系统矿泉水存储地的数据结构,定义了一个仓库 的有关信息
组成:仓库编号、仓库名称、仓库容量
设计过程或程序代码
create table buy
(
w_id char(8) not null,
c_id char(8) not null,
order_id char(8) not null,
order_num numeric(36) null, oder_date date null, order_state varchar(100) null, constraint PK_BUY primary key (w_id, c_id) );
create index beingbuy_FK on buy (w_id ASC);
create index buy_FK on buy (c_id ASC)
create table buyin
(
com_id char(8) not null, o_id char(8) not null, in_date date null, in_money numeric(8,2) null,
in_num real null,
in_goods varchar(100) null,
in_price numeric(36) null,
constraint PK_BUYIN primary key (com_id, o_id) );
create index buyin_FK on buyin (com_id ASC); create index sale_FK on buyin (o_id ASC);
create table company
(
com_id char(8) not null, c_id char(8) not null, com_name varchar(50) null, com_tel char(11) not null, com_address varchar(50) not null, out_date date null, out_money numeric(30) null, out_num real null, out_goods varchar(100) null, constraint PK_COMPANY primary key (com_id),
unique
_address
constraint AK_COM_ADDRESS_COMPANY
(com_address)
);
create index out_store_FK on company (c_id ASC) create unique index company_AK on company
ASC);
create table custerm
(
c_id char(8) not null,
c_name varchar(50) null,
c_address varchar(100) null,
c_tel numeric(11) not null,
constraint PK_CUSTERM primary key (c_id) );
create table deal
(
w_id char(8) not null, c_id char(8) not null,
(w_id, c_id, e_id)
e_id char(8) not null, deal_date date null, deal_num real null,
constraint PK_DEAL primary key );
create index deal_FK on deal (e_id ASC) create index

某送水公司的送水系统 来自淘豆网m.daumloan.com转载请标明出处.

非法内容举报中心
文档信息
  • 页数31
  • 收藏数0 收藏
  • 顶次数0
  • 上传人xiaobaizhua
  • 文件大小280 KB
  • 时间2022-05-17
最近更新