1、. .供给链管理系统的数据库设计1. 系统需求分析a. 通过建立供给链的数据库建立以方便各种信息的查询与管理工作。b. 系统简述:本系统包括六个实体:生产商;运输商;商场;仓库;商品;顾客包括四个关系转为四个表:运输;生产;销售;储存。c. 对该数据库进展如下数据处理:查询:查询其商场所有的信息,输入商场编号,输出信息查询某种商品的生产、运输、商场的信息,输入商品的编号,输出生产商、运输时间、运输商、销售商场商场想查询某一类的商品储存仓库信息,输入商品编号,输出仓库编号地址、储存时间查询商品列表里的各类商品个数,并按类型分组。.插入:在商品表中插入新商品插入新的销售记录插入新的运输记录.修改:
2、修改旧商品的价格修改运输的记录二系统概念模型E-R图实体的关系图:运输生产商顾客商品仓库商场运输商生产销售储存实体的属性图:生产商地址生产商生产商类型生产商名称生产商编号生产商注册年份运输商地址运输商运输商名称运输商编号运输商注册年份运输商拥有车辆商场地址商场商场名称商场编号编号商场注册年份商场规模顾客年龄顾客顾客性别顾客XX编号顾客XX号仓库仓库编号仓库地址编号仓库存储价格商品商品编号商品名称编号商品价格商品类型关系属性图:生产商编号商品编号生产时间生产编号生产运输编号编号地址运输时间商场编号生产商编号运输商编号运输商品编号顾客XX号商品编号销售时间销售编号销售商场编号仓库编号编号地址储存编
3、号时间所属商场储存时间编号储存商品编号三、关系模式加下划线的是主键生产商关系:生产商编号,生产商名称,生产商地址,生产商类型,生产商注册年份运输商关系:运输商编号,运输商名称,运输商注册年份,运输商地址,运输商车辆数商场关系:(商场编号, 商场名称, 商场注册年份, 商场地址, 商场规模)顾客关系:(顾客XX号, 顾客XX, 顾客年龄,顾客性别)仓库关系:(仓库编号, 仓库地址, 仓库存储价格)商品关系:(商品编号, 商品名称, 商品价格, 商品类型)生产关系:(生产编号, 商品编号,生产商编号, 生产时间)运输关系:(运输编号, 商场编号, 生产商编号, 商品编号, 运输时间, 运输商编号)
4、销售关系:(顾客XX号, 商场编号, 商品编号, 销售编号, 销售时间)储存关系:(储存编号, 商品编号, 仓库编号, 储存时间,所属商场)四、物理设计生产商:字段名类型特殊属性生产商编号char(20)主键生产商名称char(20)not null生产商地址char(20)not null生产商类型char(20)生产商注册年份datetimenot null运输商:字段名类型特殊属性运输商编号char(20)主键运输商名称char(10)not null运输商注册年份datetimenot null运输商地址char(20)not null运输商车辆数intnot null商场:字段名类型
5、特殊属性商场编号char(20)主键商场名称char(10)not null商场注册年份datetimenot null商场地址char(20)not null商场规模char(20)not null顾客: 字段名类型特殊属性顾客XX号char(20)主键顾客XXchar(10)not null顾客性别char(2)not null顾客年龄intnot null仓库字段名类型特殊属性仓库编号char(20)主键仓库地址char(10)not null仓库存储价格moneynot null商品: 字段名类型特殊属性商品编号char(20)主键商品名称char(10)not null商品类型cha
6、r(20)not null商品价格moneynot null生产:字段名类型特殊属性生产编号char(20)主键生产商编号char(10)外键商品编号char(20)not null生产时间datetimenot null运输:字段名类型特殊属性运输编号char(20)主键运输商编号char(10)外键商场编号Char20 nut null商品编号char(20)not null生产商编号char(20)not null运输时间datetime销售:字段名类型特殊属性销售编号Char(10) 主键商场编号char(10)not null销售时间char(20)not null商品编号char(
7、20)外键顾客XX号char(20)not null储存:字段名类型特殊属性储存编号char(20)主键仓库编号char(10)外键商品编号Char(20) not null储存时间char(20)not null所属商场char(20)not null五、系统实现1.数据库及其根本表的建立数据库的建立用企业管理器,根本表用T-SQL语言:数据库名:PM-System建立数据库的T-SQL语句如下:Create database PM-SystemOn(name=pm_system_data,filename=E:数据库sm_system_data.mdf)Log on(name=pm_sys
8、tem_log,filename=E:数据库sm_system_data.ldf)建立表的SQL语句如下:Use PM_SystemCreate 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
9、(20) not null,运输商车辆数 int not null)Create table 商场(商场编号char(20) primary key,商场名称char(10)not null,商场地址char(20)not null,商场注册年份datetimenot null,商场规模char(20)not null)Create table 顾客(顾客XX号char(20) primary key,顾客XXchar(10) not null,顾客年龄 int,顾客性别char(2) not null)Create table 仓库(仓库编号 char(20) primary key,仓库地
10、址char(10)not null,仓库存储价格moneynot null)Create table 商品(商品编号char(20)primary key,商品名称char(10)not null,商品价格moneynot null,商品类型char(20)not null)Create table 生产(生产编号char(20) primary key,商品编号char(20)not null,生产商编号char(20) not null references 生产商(生产商编号),生产时间datetimenot null)Create table 运输(运输编号char(20)primar
11、y key,商场编号 Char(20) nut null,生产商编号char(20)not null,商品编号 char(20)not null,运输时间datetime,运输商编号char(20) not null references 运输商(运输商编号)Create table 销售(顾客XX号char(20)not null,商场编号char(20)not null,商品编号char(20)not null references 商品(商品编号),销售编号Char(10)primary key,销售时间char(20)not null)Create table 存储( 储存编号 cha
12、r(20) pimary key,商品编号 Char(20) not null,仓库编号 char(20) not null references 仓库(仓库编号),储存时间 char(20) not null,所属商场char(20)not null)输入数据:Insert into 生产商 values(0001,可口可乐,食品,2021.01.01)Insert into 生产商 values(0002,百事可乐,XX,食品,2021.01.02)Insert into 生产商 values(0003,ADIDAS运动鞋,鞋帽,2021.02.01)Insert into 生产商 val
13、ues(0004,Audi A4,汽车,2021.03.01)Insert into 生产商 values(0005,麦当劳,食品,2021.04.01)Insert into 运输 values(0001,运一,2021.09.01,10)Insert into运输values(0002,运二,2021.01.01,20)Insert into运输values(0003,运三,2021.02.02,XX,30)Insert into运输values(0004,运四,2021.09.01,XX,40)Insert into运输values(0005,运五,1997.01.02,20)Inser
14、t into 商场 values(0001,商场一,XX2021.01.01,大)Insert into商场values(0002,商场二,2021.01.01,小)Insert into商场values(0003,商场三,2021.02.02,小)Insert into商场values(0004,商场四,2021.03.01,大)Insert into 仓库 values(0001,1000)Insert into仓库 values(0002,XX,500)Insert into仓库 values(0003,XX,1000)Insert into仓库 values(0004,2000)Ins
15、ert into 商品 values(0001,百事可乐,5,食品)Insert into商品values(0002,美年达,4,食品)Insert into商品values(0003,可口可乐,4,食品)Insert into商品values(0004,汉堡,10,食品)Insert into商品values(0005,Audi A5,300000,汽车)Insert into商品values(0001,Audi A6,400000,汽车)Insert into商品values(0002,Audi A4,200000,汽车)Insert into商品values(0003,ADIDAS运动鞋
16、1,300,鞋帽)Insert into商品values(0004,ADIDAS运动鞋2,400,鞋帽)Insert into商品values(0005,ADIDAS运动鞋3,500,鞋帽)Insert into 顾客 values(3009201001,赵一,20,女)Insert into 顾客values(3009202001,钱二,19,男)Insert into 顾客values(3009203001,李三,21,女)Insert into 顾客values(3009204001,王五,22,男)Insert into 生产 values(0001,0001,0002,2021.09
17、.05)Insert into 生产 values(0002,0003,0002,2021.09.01)Insert into 生产 values(0003,0003,0001,2021.07,03)Insert into 生产 values(0004,0004,0005,2021.07.04)Insert into生产values(0005,0005,0004,2021.07,05)Insert into生产values(0006,0006,0004,2021.07.06)Insert into生产values(0007,0007,0003,2021.07.07)Insert into生产v
18、alues(0008,0008,0003,2021.07.08)Insert into生产values(0009,0009,0003,2021.07.09)Insert into生产values(0010,0010,0003,2021.07.10)Insert into 运输 values(1,0001,0002,0001,2021.09.05,0001)Insert into 运输 values(2,0004,0002,0002,2021.09.01,0002)Insert into运输values(3,0003,0001,0004,2021.07,03,0004)Insert into运输
19、values(4,0003,0005,0003,2021.07.04,0005)Insert into运输values(5,0005,0004,0003,2021.07,05,0002)Insert into运输values(6,0006,0004,0002,2021.07.06,0005)Insert into运输values(7,0003,0003,0001,2021.07.07,0003)Insert into运输values(8,0002,0003,0002,2021.07.08,0002)Insert into运输values(9,0006,0003,0001,2021.07.09,
20、0001)Insert into运输values(10,0005,0003,0002,2021.07.10,0001)Insert into 销售 values(1,0001,0001,0001,2021.01.01)Insert into 销售values(1,0001,0002,20,女)Insert into 销售values(8,0001,0003,20,女)Insert into 销售values(8,0003,0004,20,女)Insert into 销售values(1,0002,0005,20,女)Insert into 销售values(1,0002,0006,20,女)I
21、nsert into 销售values(1,0004,0007,20,女)Insert into 储存 values(0001,0003,0001,2021.11.01 ,0001)Insert into 储存 values(0002,0002,0001,2021.11.05,0003)Insert into 储存 values(0003,0001,0002,2021.11.10,0004)2.创立索引create nonclustered index idx生产商on生产商生产商编号create nonclusteredindex idx运输on运输生产商编号create noncluste
22、redindex idx运输2on运输商场编号create nonclusteredindex idx商场on商场商场编号create nonclusteredindex idx储存on储存仓库编号create nonclusteredindex idx仓库on仓库仓库编号3.创立视图create view 供给链图asselect 生产商名称,运输商名称,商场名称,商品.商品编号,运输时间, 商品类型, 生产时间from 生产商 join 运输 on 生产商.生产商编号=运输.生产商编号 join 运输商 on 运输商.运输商编号=运输.运输商编号 join 商场 on 商场.商场编号=运输
23、.商场编号join 商品 on 商品.商品编号=运输.商品编号 join 生产 on 生产. 商品编号=商品.商品编号create view 存储图asselect 仓库.仓库编号,商品编号,所属商场from 商场 join 存储 on 商场.商场编号=存储.所属商场 join 仓库 on 仓库.仓库编号=存储.仓库编号4创立存储过程查询:create procedure 商场信息 shopID char(10)asbegin print list of the information of this shop select 商场名称,商场地址,商场规模,商场注册年份 from 商场 wher
24、e 商场编号=shopIDendcreate procedure 供给链信息 goodID char(20)asbegin print list of the information of this goods provide select 生产商名称,运输商名称,商场名称 from 供给链图 where 商品编号=goodIDendcreate procedure 储存信息 goodID char(20)asbegin print list of the storage select 仓库编号,商品编号,所属商场 from 存储图 where 商品编号=goodIDendcreate pro
25、cedure 分类信息goodID char(20)asbeginselect 商品类型,count(*)from 商品group by 商品类型end插入:create procedure 插入商品信息goodID char(20), goodnamechar(10), goodpricemoney , goodtype char(20)asinsert into商品values(goodID, goodname, goodprice, goodtype)create procedure 插入销售记录personid char(20), shopnameID char(20), goodid
26、 char(20), sellID char(20),selltime datetimeasinsert into 销售values(personid, shopnameID, goodid, sellID, selltime)修改Create procedure 修改商品价格 goodprice money,goodid char(20)AsUpdate 商品Set 商品价格goodpriceWhere 商品编号goodidCreate procedure 修改运输记录 oldtid char(20),tid char(20),shopid char(20),tpid char(20),goodid char(20),time datetime,fid char(20)As update 运输Set 运输编号=tid,运输商编号tpid,生产商编号=fid,商品编号=goodid,运输时间time,商品编号shopidWhere 运输编号oldtid. .word.