供应链管理系统的数据库设计说明
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
供应链管理系统的数据库设计
1.系统需求分析
a.通过建立供应链的数据库建立以方便各种信息的查询与管理工
作。
b.系统简述:
本系统包括六个实体:生产商;运输商;商场;仓库;商品;顾客包括四个关系转为四个表:运输;生产;销售;储存。
c.对该数据库进行如下数据处理:
Ⅰ查询:①查询其商场所有的信息,输入商场编号,输出信息
②查询某种商品的生产、运输、商场的信息,输入商品
的编号,输出生产商、运输时间、运输商、销售商场
③商场想查询某一类的商品储存仓库信息,输入商品编
号,输出仓库编号地址、储存时间
④查询商品列表里的各类商品个数,并按类型分组。
Ⅱ.插入:①在商品表中插入新商品
②插入新的销售记录
③插入新的运输记录
Ⅲ.修改:①修改旧商品的价格
②修改运输的记录
二.系统概念模型(E-R图)
①实体的关系图:
②实体的属性图:
③关系属性图:
三、关系模式(加下划线的是主键)
①生产商关系:(生产商编号,生产商名称,生产商地址,生产商类型,生产商注册年份)
②运输商关系:(运输商编号,运输商名称,运输商注册年份,运输商地址,运输商车辆数)
③商场关系:(商场编号, 商场名称, 商场注册年份, 商场地址, 商场规模)
④顾客关系:(顾客号, 顾客, 顾客年龄,顾客性别)
⑤仓库关系:(仓库编号, 仓库地址, 仓库存储价格)
⑥商品关系:(商品编号, 商品名称, 商品价格, 商品类型)
⑦生产关系:(生产编号, 商品编号,生产商编号, 生产时间)
⑧运输关系:(运输编号, 商场编号, 生产商编号, 商品编号, 运输时间, 运输商编号)
⑨销售关系:(顾客号, 商场编号, 商品编号, 销售编号, 销售时间)
⑩储存关系:(储存编号, 商品编号, 仓库编号, 储存时间,所属商场)
四、物理设计
①生产商:
②运输商:
③商场:
④顾客:
⑥商品:
⑦生产:
⑧运输:
⑨销售:
⑩储存:
五、系统实现
1.数据库及其基本表的建立
数据库的建立用企业管理器,基本表用T-SQL语言:数据库名:PM-System
建立数据库的T-SQL语句如下:
Create database PM-System
On(name=pm_system_data,filename=’E:\数据库
\sm_system_data.mdf’)
Log on(name=pm_system_log,filename=’E:\ 数据库\sm_system_data.ldf’)
建立表的SQL语句如下:
Use PM_System
Create table 生产商
(生产商编号 char(20) primary key,
生产商名称 char(20) not null,
生产商地址 char(20) not null,
生产商类型 char(20),
生产商注册年份 datetime not null
)
Create table 运输商
(运输商编号char(20)primary key,
运输商名称char(10)not null,
运输商注册年份 datetime not null,
运输商地址 char(20) not null,
运输商车辆数 int not null)
Create table 商场
(商场编号char(20) primary key,
商场名称char(10)not null,
商场地址char(20)not null,
商场注册年份datetime not null,
商场规模char(20)not null)
Create table 顾客
(顾客号char(20) primary key,
顾客char(10) not null,
顾客年龄 int,
顾客性别char(2) not null
)
Create table 仓库
(仓库编号 char(20) primary key,
仓库地址char(10)not null,
仓库存储价格money not null)
Create table 商品
(商品编号char(20)primary key,
商品名称char(10)not null,
商品价格money not null,
商品类型char(20)not null)
Create table 生产
(生产编号char(20) primary key,
商品编号char(20)not null,
生产商编号char(20) not null references 生产商(生产商编号), 生产时间datetime not null)
Create table 运输
(运输编号char(20)primary key,
商场编号 Char(20) nut null,
生产商编号char(20)not null,
商品编号 char(20)not null,
运输时间datetime,
运输商编号char(20) not null references 运输商(运输商编号) )
Create table 销售
(顾客号char(20)not null,
商场编号char(20)not null,
商品编号char(20)not null references 商品(商品编号),
销售编号Char(10)primary key,
销售时间char(20)not null
)
Create table 存储
( 储存编号 char(20) pimary key,
商品编号 Char(20) not null,
仓库编号 char(20) not null references 仓库(仓库编号),
储存时间 char(20) not null,
所属商场char(20)not null)