收藏 分销(赏)

数据库应用技术大作业模板.doc

上传人:a199****6536 文档编号:3902415 上传时间:2024-07-23 格式:DOC 页数:18 大小:268KB
下载 相关 举报
数据库应用技术大作业模板.doc_第1页
第1页 / 共18页
数据库应用技术大作业模板.doc_第2页
第2页 / 共18页
数据库应用技术大作业模板.doc_第3页
第3页 / 共18页
数据库应用技术大作业模板.doc_第4页
第4页 / 共18页
数据库应用技术大作业模板.doc_第5页
第5页 / 共18页
点击查看更多>>
资源描述

1、数据库大作业 课题名称 专 业 班 级 学 号 姓 名 教 师 成 绩 11月 日1. 需求分析( 加入需求分析的概念) 描述题目内容1.1 数据流图( DFD) 什么是数据流图。 画数据流图图1-1 XXXX图1.2 数据字典( DD) 什么是数据字典写数据字典数据文件: 订单明细表文件组成: 订单序号Id, 订单编号, 菜名, 价格, 数量, 下单时间数 据 项: 订单序号Id数据类型: 整型数据长度: 4数 据 项: 订单编号数据类型: 可变字符类型数据长度: 50数据组成: A+日期时间数 据 项: 菜名数据类型: 可变字符类型数据长度: 502. 概念结构设计什么概念结构设计E-R图

2、( 在Powerdesigner中创立概念模型, 粘贴图) 图2-1 XXXX图3. 逻辑结构设计关系模式( ( 在Powerdesigner中由概念模型转化为物理数据模型, 粘图) ) 图3-1 XXXX图4. 建表SQL语句由物理数据模型生成SQL Server 数据库的建表语句。/*=*/* DBMS name: Microsoft SQL Server */* Created on: -9-16 14:39:14 */*=*/if exists (select 1 from sys.sysreferences r join sys.sysobjects o on (o.id = r.c

3、onstid and o.type = F) where r.fkeyid = object_id(SC) and o.name = FK_SC_SC_S)alter table SC drop constraint FK_SC_SC_Sgoif exists (select 1 from sys.sysreferences r join sys.sysobjects o on (o.id = r.constid and o.type = F) where r.fkeyid = object_id(SC) and o.name = FK_SC_SC2_C)alter table SC drop

4、 constraint FK_SC_SC2_Cgoif exists (select 1 from sys.sysreferences r join sys.sysobjects o on (o.id = r.constid and o.type = F) where r.fkeyid = object_id(TC) and o.name = FK_TC_TC_T)alter table TC drop constraint FK_TC_TC_Tgoif exists (select 1 from sys.sysreferences r join sys.sysobjects o on (o.

5、id = r.constid and o.type = F) where r.fkeyid = object_id(TC) and o.name = FK_TC_TC2_C)alter table TC drop constraint FK_TC_TC2_Cgoif exists (select 1 from sysobjects where id = object_id(C) and type = U) drop table Cgoif exists (select 1 from sysobjects where id = object_id(S) and type = U) drop ta

6、ble Sgoif exists (select 1 from sysindexes where id = object_id(SC) and name = SC2_FK and indid 0 and indid 0 and indid 0 and indid 0 and indid 255) drop index TC.TC_FKgoif exists (select 1 from sysobjects where id = object_id(TC) and type = U) drop table TCgo/*=*/* Table: C */*=*/create table C ( C

7、No char(2) not null, CN varchar(40) null, CT smallint null, constraint PK_C primary key nonclustered (CNo)go/*=*/* Table: S */*=*/create table S ( SNo char(2) not null, SN varchar(40) null, Gen char(2) null, Birth datetime null, Dept varchar(40) null, constraint PK_S primary key nonclustered (SNo)go

8、/*=*/* Table: SC */*=*/create table SC ( SNo char(2) not null, CNo char(2) not null, Score smallint null, constraint PK_SC primary key (SNo, CNo)go/*=*/* Index: SC_FK */*=*/create index SC_FK on SC (SNo ASC)go/*=*/* Index: SC2_FK */*=*/create index SC2_FK on SC (CNo ASC)go/*=*/* Table: T */*=*/creat

9、e table T ( TNo char(2) not null, TN varchar(40) null, Gen char(2) null, Birth datetime null, Prof varchar(40) null, Sal int null, Comm int null, Dept varchar(40) null, constraint PK_T primary key nonclustered (TNo)go/*=*/* Table: TC */*=*/create table TC ( TNo char(2) not null, CNo char(2) not null

10、, constraint PK_TC primary key (TNo, CNo)go/*=*/* Index: TC_FK */*=*/create index TC_FK on TC (TNo ASC)go/*=*/* Index: TC2_FK */*=*/create index TC2_FK on TC (CNo ASC)goalter table SC add constraint FK_SC_SC_S foreign key (SNo) references S (SNo)goalter table SC add constraint FK_SC_SC2_C foreign key (CNo) references C (CNo)goalter table TC add constraint FK_TC_TC_T foreign key (TNo) references T (TNo)goalter table TC add constraint FK_TC_TC2_C foreign key (CNo) references C (CNo)go5. 结论心得体会( 如果有相同的, 则都不及格) 参考教材: 数据库实验指导 主编: 杨海霞 出版社: 人民邮电出版社 书号: 978-115-16535-0

展开阅读全文
部分上传会员的收益排行 01、路***(¥15400+),02、曲****(¥15300+),
03、wei****016(¥13200+),04、大***流(¥12600+),
05、Fis****915(¥4200+),06、h****i(¥4100+),
07、Q**(¥3400+),08、自******点(¥2400+),
09、h*****x(¥1400+),10、c****e(¥1100+),
11、be*****ha(¥800+),12、13********8(¥800+)。
相似文档                                   自信AI助手自信AI助手
百度文库年卡

猜你喜欢                                   自信AI导航自信AI导航
搜索标签

当前位置:首页 > 包罗万象 > 大杂烩

移动网页_全站_页脚广告1

关于我们      便捷服务       自信AI       AI导航        获赠5币

©2010-2024 宁波自信网络信息技术有限公司  版权所有

客服电话:4008-655-100  投诉/维权电话:4009-655-100

gongan.png浙公网安备33021202000488号   

icp.png浙ICP备2021020529号-1  |  浙B2-20240490  

关注我们 :gzh.png    weibo.png    LOFTER.png 

客服