供应链管理系统的数据库设计Word格式文档下载.docx

上传人:b****5 文档编号:18309968 上传时间:2022-12-15 格式:DOCX 页数:16 大小:111.39KB
下载 相关 举报
供应链管理系统的数据库设计Word格式文档下载.docx_第1页
第1页 / 共16页
供应链管理系统的数据库设计Word格式文档下载.docx_第2页
第2页 / 共16页
供应链管理系统的数据库设计Word格式文档下载.docx_第3页
第3页 / 共16页
供应链管理系统的数据库设计Word格式文档下载.docx_第4页
第4页 / 共16页
供应链管理系统的数据库设计Word格式文档下载.docx_第5页
第5页 / 共16页
点击查看更多>>
下载资源
资源描述

供应链管理系统的数据库设计Word格式文档下载.docx

《供应链管理系统的数据库设计Word格式文档下载.docx》由会员分享,可在线阅读,更多相关《供应链管理系统的数据库设计Word格式文档下载.docx(16页珍藏版)》请在冰豆网上搜索。

供应链管理系统的数据库设计Word格式文档下载.docx

②实体的属性图:

③关系属性图:

 

三、关系模式(加下划线的是主键)

①生产商关系:

(生产商编号,生产商名称,生产商地址,生产商类型,生产商注册年份)

②运输商关系:

(运输商编号,运输商名称,运输商注册年份,运输商地址,运输商车辆数)

③商场关系:

(商场编号,商场名称,商场注册年份,商场地址,商场规模)

④顾客关系:

(顾客号,顾客,顾客年龄,顾客性别)

⑤仓库关系:

(仓库编号,仓库地址,仓库存储价格)

⑥商品关系:

(商品编号,商品名称,商品价格,商品类型)

⑦生产关系:

(生产编号,商品编号,生产商编号,生产时间)

⑧运输关系:

(运输编号,商场编号,生产商编号,商品编号,运输时间,运输商编号)

⑨销售关系:

(顾客号,商场编号,商品编号,销售编号,销售时间)

⑩储存关系:

(储存编号,商品编号,仓库编号,储存时间,所属商场)

四、物理设计

①生产商:

字段名

类型

特殊属性

生产商编号

char(20)

主键

生产商名称

notnull

生产商地址

生产商类型

生产商注册年份

datetime

②运输商:

运输商编号

运输商名称

char(10)

运输商注册年份

运输商地址

运输商车辆数

int

③商场:

商场编号

商场名称

商场注册年份

商场地址

商场规模

④顾客:

顾客号

顾客性别

char

(2)

顾客年龄

int

⑤仓库

仓库编号

仓库地址

仓库存储价格

money

⑥商品:

商品编号

商品名称

商品类型

商品价格

⑦生产:

生产编号

外键

生产时间

⑧运输:

运输编号

Char(20)

nutnull

运输时间

⑨销售:

销售编号

Char(10)

主键

销售时间

⑩储存:

储存编号

notnull

储存时间

所属商场

五、系统实现

1.数据库及其基本表的建立

数据库的建立用企业管理器,基本表用T-SQL语言:

数据库名:

PM-System

建立数据库的T-SQL语句如下:

CreatedatabasePM-System

On(name=pm_system_data,filename=’E:

\数据库\sm_system_data.mdf’)

Logon(name=pm_system_log,filename=’E:

\数据库\sm_system_data.ldf’)

建立表的SQL语句如下:

UsePM_System

Createtable生产商

(生产商编号char(20)primarykey,

生产商名称char(20)notnull,

生产商地址char(20)notnull,

生产商类型char(20),

生产商注册年份datetimenotnull

Createtable运输商

(运输商编号char(20)primarykey,

运输商名称char(10)notnull,

运输商注册年份datetimenotnull,

运输商地址char(20)notnull,

运输商车辆数intnotnull)

Createtable商场

(商场编号char(20)primarykey,

商场名称char(10)notnull,

商场地址char(20)notnull,

商场注册年份datetimenotnull,

商场规模char(20)notnull)

Createtable顾客

(顾客号char(20)primarykey,

顾客char(10)notnull,

顾客年龄int,

顾客性别char

(2)notnull

Createtable仓库

(仓库编号char(20)primarykey,

仓库地址char(10)notnull,

仓库存储价格moneynotnull)

Createtable商品

(商品编号char(20)primarykey,

商品名称char(10)notnull,

商品价格moneynotnull,

商品类型char(20)notnull)

Createtable生产

(生产编号char(20)primarykey,

商品编号char(20)notnull,

生产商编号char(20)notnullreferences生产商(生产商编号),

生产时间datetimenotnull)

Createtable运输

(运输编号char(20)primarykey,

商场编号Char(20)nutnull,

生产商编号char(20)notnull,

商品编号char(20)notnull,

运输时间datetime,

运输商编号char(20)notnullreferences运输商(运输商编号)

Createtable销售

(顾客号char(20)notnull,

商场编号char(20)notnull,

商品编号char(20)notnullreferences商品(商品编号),

销售编号Char(10)primarykey,

销售时间char(20)notnull

Createtable存储

(储存编号char(20)pimarykey,

商品编号Char(20)notnull,

仓库编号char(20)notnullreferences仓库(仓库编号),

储存时间char(20)notnull,

所属商场char(20)notnull)

输入数据:

Insertinto生产商values(‘0001’,’可口可乐’,’’,’食品’,’2010.01.01’)

Insertinto生产商values(‘0002’,’百事可乐’,’’,’食品’,’2010.01.02’)

Insertinto生产商values(‘0003’,’ADIDAS运动鞋’,’’,’鞋帽’,’2010.02.01’)

Insertinto生产商values(‘0004’,’AudiA4’,’’,’汽车’,’2010.03.01’)

Insertinto生产商values(‘0005’,’麦当劳’,’’,’食品’,’2010.04.01’)

Insertinto运输values(‘0001’,’运一’,’2009.09.01’,’’,’10’)

Insertinto运输values(‘0002’,’运二’,’2010.01.01’,’’,’20’)

Insertinto运输values(‘0003’,’运三’,’2010.02.02’,’’,’30’)

Insertinto运输values(‘0004’,’运四’,’2009.09.01’,’’,’40’)

Insertinto运输values(‘0005’,’运五’,’1997.01.02’,’’,’20’)

Insertinto商场values(‘0001’,’商场一’,’’’2009.01.01’,’大’)

Insertinto商场values(‘0002’,’商场二’,’’’2010.01.01’,’小’)

Insertinto商场values(‘0003’,’商场三’,’’’2010.02.02’,’小’)

Insertinto商场values(‘0004’,’商场四’,’’’2010.03.01’,’大’)

Insertinto仓库values(‘0001’,’’’1000’)

Insertinto仓库values(‘0002’,’’,’500’)

Insertinto仓库values(‘0003’,’’,’1000’)

Insertinto仓库values(‘0004’,’’,’2000’)

Insertinto商品values(‘0001’,’百事可乐’,’5’,’食品’)

Insertinto商品values(‘0002’,’美年达’,’4’,’食品’)

Insertinto商品values(‘0003’,’可口可乐’,’4’,’食品’)

Insertinto商品values(‘0004’,’汉堡’,’10’,’食品’)

Insertinto商品values(‘0005’,’AudiA5’,’300000’,’汽车’)

Insertinto商品values(‘0001’,’AudiA6’,’400000’,’汽车’)

Insertinto商品values(‘0002’,’AudiA4’,’200000’,’汽车’)

Insertinto商品values(‘0003’,’ADIDAS运动鞋1’,’300’,’鞋帽’)

Insertinto商品values(‘0004’,’ADIDAS运动鞋2’,’400’,’鞋帽’)

Insertinto商品values(‘0005’,’ADIDAS运动鞋3’,’500’,’鞋帽’)

Insertinto顾客values(‘3009201001’,’一’,’20’,’女’)

Insertinto顾客values(‘3009202001’,’钱二’,’19’,’男’)

Insertinto顾客values(‘3009203001’,’三’,’21’,’女’)

Insertinto顾客values(‘3009204001’,’王五’,’22’,’男’)

Insertinto生产values(‘0001’,’0001’,’0002’,’2009.09.05’)

Insertinto生产values(‘0002’,’0003’,’0002’,’2009.09.01’)

Insertinto生产values(‘0003’,’0003’,’0001’,’2010.07,03’)

Insertinto生产values(‘0004’,’0004’,’0005’,’2010.07.04’)

Insertinto生产values(‘0005’,’0005’,’0004’,’2010.07,05’)

Insertinto生产values(‘0006’,’0006’,’0004’,’2010.07.06’)

Insertinto生产values(‘0007’,’0007’,’0003’,’2010.07.07’)

Insertinto生产values(‘0008’,’0008’,’0003’,’2010.07.08’)

Insertinto生产values(‘0009’,’0009’,’0003’,’2010.07.09’)

Insertinto生产values(‘0010’,’0010’,’0003’,’2010.07.10’)

Insertinto运输values(‘1’,’0001’,’0002’,’0001’,’2009.09.05’,’0001’)

Insertinto运输values(‘2’,’0004’,’0002’,’0002’,’2009.09.01’,’0002’)

Insertinto运输values(‘3’,’0003’,’0001’,’0004’,’2010.07,03’,’0004’)

Insertinto运输values(‘4’,’0003’,’0005’,’0003’,’2010.07.04’,’0005’)

Insertinto运输values(‘5’,’0005’,’0004’,’0003’,’2010.07,05’,’0002’)

Insertinto运输values(‘6’,’0006’,’0004’,’0002’,’2010.07.06’,’0005’)

Insertinto运输values(‘7’,’0003’,’0003’,’0001’,’2010.07.07’,’0003’)

Insertinto运输values(‘8’,’0002’,’0003’,’0002’,’2010.07.08’,’0002’)

Insertinto运输values(‘9’,’0006’,’0003’,’0001’,’2010.07.09’,’0001’)

Insertinto运输values(‘10’,’0005’,’0003’,’0002’,’2010.07.10’,’0001’)

Insertinto销售values(‘1’,’0001’,’0001’,’0001’,’2010.01.01’)

Insertinto销售values(‘1’,’0001’,’0002’,’20’,’女’)

Insertinto销售values(‘8’,’0001’,’0003’,’20’,’女’)

Insertinto销售values(‘8’,’0003’,’0004’,’20’,’女’)

Insertinto销售values(‘1’,’0002’,’0005’,’20’,’女’)

Insertinto销售values(‘1’,’0002’,’0006’,’20’,’女’)

Insertinto销售values(‘1’,’0004’,’0007’,’20’,’女’)

Insertinto储存values(‘0001’,’0003’,’0001’,’2010.11.01’,’0001’)

Insertinto储存values(‘0002’,’0002’,’0001’,’2010.11.05’,’0003’)

Insertinto储存values(‘0003’,’0001’,’0002’,’2010.11.10’,’0004’)

2.创建索引

createnonclustered

indexidx生产商

on生产商(生产商编号)

createnonclustered

indexidx运输

on运输(生产商编号)

indexidx运输2

on运输(商场编号)

indexidx商场

on商场(商场编号)

indexidx储存

on储存(仓库编号)

indexidx仓库

on仓库(仓库编号)

3.创建视图

createview供应链图

as

select生产商名称,运输商名称,商场名称,商品.商品编号,运输时间,商品类型,生产时间

from生产商join运输on生产商.生产商编号=运输.生产商编号join运输商on运输商.运输商编号=运输.运输商编号join商场on商场.商场编号=运输.商场编号

join商品on商品.商品编号=运输.商品编号join生产on生产.商品编号=商品.商品编号

createview存储图

select仓库.仓库编号,商品编号,所属商场

from商场join存储on商场.商场编号=存储.所属商场join仓库on仓库.仓库编号=存储.仓库编号

4.创建存储过程

①查询:

createprocedure商场信息shopIDchar(10)

begin

print'

listoftheinformationofthisshop'

select商场名称,商场地址,商场规模,商场注册年份

from商场

where商场编号=shopID

end

createprocedure供应链信息goodIDchar(20)

listoftheinformationofthisgood’sprovide'

select生产商名称,运输商名称,商场名称

from供应链图

where商品编号=goodID

createprocedure储存信息goodIDchar(20)

listofthestorage'

select仓库编号,商品编号,所属商场

from存储图

createprocedure分类信息goodIDchar(20)

select商品类型,count(*)

from商品

groupby商品类型

②插入:

createprocedure插入商品信息goodIDchar(20),goodnamechar(10),goodpricemoney,goodtypechar(20)

insertinto商品

values(goodID,goodname,goodprice,goodtype)

createprocedure插入销售记录personidchar(20),shopnameIDchar(20),goodidchar(20),sellIDchar(20),selltimedatetime

insertinto销售

values(personid,shopnameID,goodid,sellID,selltime)

③修改

Createprocedure修改商品价格goodpricemoney,goodidchar(20)

As

Update商品

Set商品价格=goodprice

Where商品编号=goodid

Createprocedure修改运输记录oldtidchar(20),tidchar(20),shopidchar(20),tpidchar(20),goodidchar(20),timedatetime,fidchar(20)

Asupdate运输

Set运输编号=tid,运输商编号=tpid,生产商编号=fid,商品编号=goodid,运输时间=time,商品编号=shopid

Where运输编号=oldtid

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 职业教育 > 中职中专

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1