77范文网 - 专业文章范例文档资料分享平台

物流配送系统数据库设计(SQL)(8)

来源:网络收集 时间:2019-01-27 下载这篇文档 手机版
说明:文章内容仅供预览,部分内容可能不全,需要完整文档或者需要复制内容,请下载word后使用。下载word有问题请添加微信号:或QQ: 处理(尽可能给您提供完整文档),感谢您的支持与谅解。点击这里给我发消息

部门编号3 int not null, 部门名称3 char(20) not null, 部门电话3 int not null, constraint PK_财会部门 primary key nonclustered (部门编号3) ) go

/*==============================================================*/ /* Table: 财务结算表 */

/*==============================================================*/ create table 财务结算表 (

结算表编号 int not null, 部门编号3 int null, 结算户编号 int not null, 结算日期 datetime not null, constraint PK_财务结算表 primary key nonclustered (结算表编号) ) go

/*==============================================================*/ /* Index: Relationship_17_FK */

/*==============================================================*/ create index Relationship_17_FK on 财务结算表 ( 部门编号3 ASC ) go

/*==============================================================*/ /* Table: 采购员 */

/*==============================================================*/ create table 采购员 (

采购员编号 int not null, 采购员性别 char(2) not null, 采购员电话 int not null, 采购员地址 char(30) not null, constraint PK_采购员 primary key nonclustered (采购员编号) ) go

/*==============================================================*/ /* Table: 采购表 */

/*==============================================================*/ create table 采购表 (

采购表编号 int not null,

部门编号3 int null, 商品编号1 int not null, 采购地址 char(30) not null, 采购日期 datetime not null, constraint PK_采购表 primary key nonclustered (采购表编号) ) go

/*==============================================================*/ /* Index: Relationship_15_FK */

/*==============================================================*/ create index Relationship_15_FK on 采购表 ( 部门编号3 ASC ) go

/*==============================================================*/ /* Table: 销售部门 */

/*==============================================================*/ create table 销售部门 (

部门编号2 int not null, 库存表编号 int null, 销售部_部门编号2 int null, 部门名称2 char(20) not null, 部门电话2 int not null, constraint PK_销售部门 primary key nonclustered (部门编号2) ) go

/*==============================================================*/ /* Index: Relationship_18_FK */

/*==============================================================*/ create index Relationship_18_FK on 销售部门 ( 销售部_部门编号2 ASC ) go

/*==============================================================*/ /* Index: Relationship_19_FK */

/*==============================================================*/ create index Relationship_19_FK on 销售部门 ( 库存表编号 ASC ) go

alter table Relationship_18

add constraint FK_RELATION_RELATIONS_供货商 foreign key (供货商编号) references 供货商 (供货商编号) go

alter table Relationship_18

add constraint FK_RELATION_RELATIONS_财务结算表 foreign key (结算表编号) references 财务结算表 (结算表编号) go

alter table Relationship_19

add constraint FK_RELATION_RELATIONS_客户 foreign key (客户编号) references 客户 (客户编号) go

alter table Relationship_19

add constraint FK_RELATION_RELATIONS_财务结算表 foreign key (结算表编号) references 财务结算表 (结算表编号) go

alter table Relationship_5

add constraint FK_RELATION_RELATIONS_业务部门 foreign key (部门编号1) references 业务部门 (部门编号1) go

alter table Relationship_5

add constraint FK_RELATION_RELATIONS_采购员 foreign key (采购员编号) references 采购员 (采购员编号) go

alter table Relationship_6

add constraint FK_RELATION_RELATIONS_采购员 foreign key (采购员编号) references 采购员 (采购员编号) go

alter table Relationship_6

add constraint FK_RELATION_RELATIONS_采购表 foreign key (采购表编号) references 采购表 (采购表编号) go

alter table Relationship_7

add constraint FK_RELATION_RELATIONS_供货商 foreign key (供货商编号) references 供货商 (供货商编号)

go

alter table Relationship_7

add constraint FK_RELATION_RELATIONS_采购表 foreign key (采购表编号) references 采购表 (采购表编号) go

alter table Relationship_8

add constraint FK_RELATION_RELATIONS_供货商 foreign key (供货商编号) references 供货商 (供货商编号) go

alter table Relationship_8

add constraint FK_RELATION_RELATIONS_供货表 foreign key (供货表编号) references 供货表 (供货表编号) go

alter table 供货表

add constraint FK_供货表_RELATIONS_库存管理员 foreign key (管理员编号) references 库存管理员 (管理员编号) go

alter table 供货表

add constraint FK_供货表_RELATIONS_财会部门 foreign key (部门编号3) references 财会部门 (部门编号3) go

alter table 客户

add constraint FK_客户_RELATIONS_客户 foreign key (客户_客户编号) references 客户 (客户编号) go

alter table 客户

add constraint FK_客户_RELATIONS_销售部门 foreign key (部门编号2) references 销售部门 (部门编号2) go

alter table 库存表

add constraint FK_库存表_RELATIONS_库存管理员 foreign key (管理员编号) references 库存管理员 (管理员编号) go

alter table 统计报表

add constraint FK_统计报表_RELATIONS_业务部门 foreign key (部门编号1)

references 业务部门 (部门编号1) go

alter table 订单表

add constraint FK_订单表_RELATIONS_客户 foreign key (客户编号) references 客户 (客户编号) go

alter table 订单表

add constraint FK_订单表_RELATIONS_客户 foreign key (客户_客户编号) references 客户 (客户编号) go

alter table 订单表

add constraint FK_订单表_RELATIONS_业务部门 foreign key (部门编号1) references 业务部门 (部门编号1) go

alter table 财务结算表

add constraint FK_财务结算表_RELATIONS_财会部门 foreign key (部门编号3) references 财会部门 (部门编号3) go

alter table 采购表

add constraint FK_采购表_RELATIONS_财会部门 foreign key (部门编号3) references 财会部门 (部门编号3) go

alter table 销售部门

add constraint FK_销售部门_RELATIONS_销售部门 foreign key (销售部_部门编号2) references 销售部门 (部门编号2) go

alter table 销售部门

add constraint FK_销售部门_RELATIONS_库存表 foreign key (库存表编号) references 库存表 (库存表编号) go

八:小结

这次数据库课程设计给我的最大的印象就是如果自己有了兴趣,就动手去做,困难在你的勇气和毅力下是抬不了头的。从做这个数据库开始无论遇到什么困难,我都没有一丝的放弃的念头。出于对知识的渴望,出于对新技术的好奇,出于对一切未知的求知。我完成了这

次数据库课程设计,不过这只是我学习路上的驿站。语言并不重要毕竟它仅仅是工具,用好一个工具并不是一件值得为外人道的事情,主要是了解学习思想。

百度搜索“77cn”或“免费范文网”即可找到本站免费阅读全部范文。收藏本站方便下次阅读,免费范文网,提供经典小说综合文库物流配送系统数据库设计(SQL)(8)在线全文阅读。

物流配送系统数据库设计(SQL)(8).doc 将本文的Word文档下载到电脑,方便复制、编辑、收藏和打印 下载失败或者文档不完整,请联系客服人员解决!
本文链接:https://www.77cn.com.cn/wenku/zonghe/460769.html(转载请注明文章来源)
Copyright © 2008-2022 免费范文网 版权所有
声明 :本网站尊重并保护知识产权,根据《信息网络传播权保护条例》,如果我们转载的作品侵犯了您的权利,请在一个月内通知我们,我们会及时删除。
客服QQ: 邮箱:tiandhx2@hotmail.com
苏ICP备16052595号-18
× 注册会员免费下载(下载后可以自由复制和排版)
注册会员下载
全站内容免费自由复制
注册会员下载
全站内容免费自由复制
注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信: QQ: