部门编号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)在线全文阅读。
相关推荐: