实验三 SJK数据库设计

2024-05-01 20:04
文章标签 设计 数据库 实验 sjk

本文主要是介绍实验三 SJK数据库设计,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

实验题目

实验三 SJK数据库设计

实验时间

2023.3.22

实验地点

软件工程基础实验室

实验课时

2

实验目的

​掌握数据库设计基本方法及数据库设计工具。

实验要求

​ 掌握数据库设计基本步骤,包括数据库概念结构设计、逻辑结构设计,物理结构设计,数据库模式SQL语句生成。能够使用数据库设计工具进行数据库设计。

实验步骤

及内容

 设计一个教务信息系统的数据库。数据库包含院系信息,学生信息,教师信息,课程信息,学生选课信息,考试信息。其中,一个学生属于一个院系,可以选修多门课程。一个教师属于一个院系,可以任教多门课程,一门课程也可以有多个老师任教。一门课程有多个课程安排,可以有多场考试安排。

(1)数据库概念结构设计

​ 识别出学生,教师,院系,课程,考试,课程安排六个实体。每个实体的属性、码如下:

学生Student:学号sno,姓名sname,性别ssex,年龄sage,班级class,院系编号dno。主码:学号sno。

教师teacher:编号tno,姓名tname,性别tsex,年龄tage,院系dno,职称title。主码:编号tno。

院系department:院系名depart_name,院系编号dno,院长编号dean_tno。主码:院系编号dno。

课程course:课程号cno,课程名course_name,学时数hours,学分credit,类型type,开设院系dno。主码:课程号。

课程安排course_arrangement:课程号cno,周次week,节次course_time,教室classroom。主码:课程号cno,周次week,节次course_time

考试安排exam_arrangement:课程号cno,考试时间exam_time,考试时长hours,考试地点classroom。主码:课程号,考试地点。

​ 根据语义,分析实体之间的联系,确定实体之间一对一,一对多和多对多联系。

SQL语句生成

​ 由PowerDesigner生成的SQL语句如下:

if exists(select 1 from sys.sysforeignkey where role='fk_sc_s') then

    alter table sc

       delete foreign key fk_sc_s

end if;

if exists(select 1 from sys.sysforeignkey where role='fk_sd') then

    alter table student

       delete foreign key fk_sd

end if;

if exists(

   select 1 from sys.systable

   where table_name='student'

     and table_type in ('BASE', 'GBL TEMP')

) then

    drop table student

end if;

/*==============================================================*/

/* Table: student                                               */

/*==============================================================*/

create table student

(

   sno                  char(12)                       not null,

   sname                char(25)                       null,

   ssex                 char(2)                        null,

   sage                 small int                       null,

   class                char(8)                        null,

   dno                  char(2)                        null,

   constraint PK_STUDENT primary key clustered (sno)

);

alter table student

   add constraint fk_sd foreign key (dno)

      references department (dno)

      on update restrict

      on delete restrict;

if exists(select 1 from sys.sysforeignkey where role='fk_cd') then

    alter table course

       delete foreign key fk_cd

end if;

if exists(select 1 from sys.sysforeignkey where role='fk_ca_c') then

    alter table course_arrangement

       delete foreign key fk_ca_c

end if;

if exists(select 1 from sys.sysforeignkey where role='fk_exam_c') then

    alter table exam_arrangement

       delete foreign key fk_exam_c

end if;

if exists(select 1 from sys.sysforeignkey where role='fk_sc_c') then

    alter table sc

       delete foreign key fk_sc_c

end if;

if exists(select 1 from sys.sysforeignkey where role='fk_tc_c') then

    alter table tc

       delete foreign key fk_tc_c

end if;

if exists(

   select 1 from sys.systable

   where table_name='course'

     and table_type in ('BASE', 'GBL TEMP')

) then

    drop table course

end if;

/*==============================================================*/

/* Table: course                                                */

/*==============================================================*/

create table course

(

   cno                  char(8)                        not null,

   cname                char(25)                       null,

   hours                small int                       null,

   credit               small int                       null,

   type                 char(8)                        null,

   dno                  char(2)                        null,

   constraint PK_COURSE primary key clustered (cno)

);

alter table course

   add constraint fk_cd foreign key ()

      references department (dno)

      on update restrict

      on delete restrict;

if exists(select 1 from sys.sysforeignkey where role='fk_tc_t') then

    alter table tc

       delete foreign key fk_tc_t

end if;

if exists(select 1 from sys.sysforeignkey where role='fk_td') then

    alter table teacher

       delete foreign key fk_td

end if;

if exists(

   select 1 from sys.systable

   where table_name='teacher'

     and table_type in ('BASE', 'GBL TEMP')

) then

    drop table teacher

end if;

/*==============================================================*/

/* Table: teacher                                               */

/*==============================================================*/

create table teacher

(

   tno                  char(12)                       not null,

   tname                char(25)                       null,

   tsex                 char(2)                        null,

   tage                 small int                       null,

   dno                  char(2)                        null,

   title                char(10)                       null,

   constraint PK_TEACHER primary key clustered (tno)

);

alter table teacher

   add constraint fk_td foreign key (dno)

      references department (dno)

      on update restrict

      on delete restrict;

if exists(select 1 from sys.sysforeignkey where role='fk_cd') then

    alter table course

       delete foreign key fk_cd

end if;

if exists(select 1 from sys.sysforeignkey where role='fk_sd') then

    alter table student

       delete foreign key fk_sd

end if;

if exists(select 1 from sys.sysforeignkey where role='fk_td') then

    alter table teacher

       delete foreign key fk_td

end if;

if exists(

   select 1 from sys.systable

   where table_name='department'

     and table_type in ('BASE', 'GBL TEMP')

) then

    drop table department

end if;

/*==============================================================*/

/* Table: department                                            */

/*==============================================================*/

create table department

(

   dno                  char(2)                        not null,

   dame                 char(25)                       null,

   tno                  char(12)                       null,

   constraint PK_DEPARTMENT primary key clustered (dno)

);

if exists(select 1 from sys.sysforeignkey where role='fk_ca_c') then

    alter table course_arrangement

       delete foreign key fk_ca_c

end if;

if exists(

   select 1 from sys.systable

   where table_name='course_arrangement'

     and table_type in ('BASE', 'GBL TEMP')

) then

    drop table course_arrangement

end if;

/*==============================================================*/

/* Table: course_arrangement                                    */

/*==============================================================*/

create table course_arrangement

(

   cno                  char(8)                        not null,

   week                 small int                       not null,

   course_time          char(12)                       not null,

   classroom            char(10)                       null,

   constraint PK_COURSE_ARRANGEMENT primary key clustered (cno, week, course_time)

);

alter table course_arrangement

   add constraint fk_ca_c foreign key (cno)

      references course (cno)

      on update restrict

      on delete restrict;

if exists(select 1 from sys.sysforeignkey where role='fk_exam_c') then

    alter table exam_arrangement

       delete foreign key fk_exam_c

end if;

if exists(

   select 1 from sys.systable

   where table_name='exam_arrangement'

     and table_type in ('BASE', 'GBL TEMP')

) then

    drop table exam_arrangement

end if;

/*==============================================================*/

/* Table: exam_arrangement                                      */

/*==============================================================*/

create table exam_arrangement

(

   cno                  char(8)                        not null,

   exam_time            char(10)                       null,

   classroom            char(10)                       not null,

   hour                 small int                       null,

   constraint PK_EXAM_ARRANGEMENT primary key clustered (cno, classroom)

);

alter table exam_arrangement

   add constraint fk_exam_c foreign key (cno)

      references course (cno)

      on update restrict

      on delete restrict;

if exists(select 1 from sys.sysforeignkey where role='fk_sc_c') then

    alter table sc

       delete foreign key fk_sc_c

end if;

if exists(select 1 from sys.sysforeignkey where role='fk_sc_s') then

    alter table sc

       delete foreign key fk_sc_s

end if;

if exists(

   select 1 from sys.systable

   where table_name='sc'

     and table_type in ('BASE', 'GBL TEMP')

) then

    drop table sc

end if;

/*==============================================================*/

/* Table: sc                                                    */

/*==============================================================*/

create table sc

(

   sno                  char(12)                       not null,

   cno                  char(8)                        not null,

   grade                small int                       null,

   constraint PK_SC primary key clustered (sno, cno)

);

alter table sc

   add constraint fk_sc_c foreign key (cno)

      references course (cno)

      on update restrict

      on delete restrict;

alter table sc

   add constraint fk_sc_s foreign key (sno)

      references student (sno)

      on update restrict

      on delete restrict;

if exists(select 1 from sys.sysforeignkey where role='fk_tc_c') then

    alter table tc

       delete foreign key fk_tc_c

end if;

if exists(select 1 from sys.sysforeignkey where role='fk_tc_t') then

    alter table tc

       delete foreign key fk_tc_t

end if;

if exists(

   select 1 from sys.systable

   where table_name='tc'

     and table_type in ('BASE', 'GBL TEMP')

) then

    drop table tc

end if;

/*==============================================================*/

/* Table: tc                                                    */

/*==============================================================*/

create table tc

(

   tno                  char(12)                       not null,

   cno                  char(8)                        not null,

   term                 char(8)                        not null,

   class                char(8)                        null,

   constraint PK_TC primary key clustered (tno, cno, term)

);

alter table tc

   add constraint fk_tc_c foreign key (cno)

      references course (cno)

      on update restrict

      on delete restrict;

alter table tc

   add constraint fk_tc_t foreign key (tno)

      references teacher (tno)

      on update restrict

      on delete restrict;

实验结果及分析

经检验,实验基本达到预期效果。数据库的设计的基本步骤包括数据库概念结构设计、逻辑结构设计,物理结构设计。其中概念结构设计通常用E-R图表示。逻辑结构设计比较重要,需要从E-R图转换得到,并需要完成一些细节,进行调整优化。物理结构设计则需要完成存储路径的设计和存储结构的设计,需要根据实际情况进行设计。例如每个关系的存储结构,具体的数据类型和长度都要符合实际,同时尽量减小开销。使用类似PowerDesigner的工具可以辅助设计,方便的进行模型间的转化,并可以直接生成SQL语句,有必要掌握使用的基本方法。

这篇关于实验三 SJK数据库设计的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/952553

相关文章

SQL Server修改数据库名及物理数据文件名操作步骤

《SQLServer修改数据库名及物理数据文件名操作步骤》在SQLServer中重命名数据库是一个常见的操作,但需要确保用户具有足够的权限来执行此操作,:本文主要介绍SQLServer修改数据... 目录一、背景介绍二、操作步骤2.1 设置为单用户模式(断开连接)2.2 修改数据库名称2.3 查找逻辑文件名

SQL Server数据库死锁处理超详细攻略

《SQLServer数据库死锁处理超详细攻略》SQLServer作为主流数据库管理系统,在高并发场景下可能面临死锁问题,影响系统性能和稳定性,这篇文章主要给大家介绍了关于SQLServer数据库死... 目录一、引言二、查询 Sqlserver 中造成死锁的 SPID三、用内置函数查询执行信息1. sp_w

MyBatis设计SQL返回布尔值(Boolean)的常见方法

《MyBatis设计SQL返回布尔值(Boolean)的常见方法》这篇文章主要为大家详细介绍了MyBatis设计SQL返回布尔值(Boolean)的几种常见方法,文中的示例代码讲解详细,感兴趣的小伙伴... 目录方案一:使用COUNT查询存在性(推荐)方案二:条件表达式直接返回布尔方案三:存在性检查(EXI

Druid连接池实现自定义数据库密码加解密功能

《Druid连接池实现自定义数据库密码加解密功能》在现代应用开发中,数据安全是至关重要的,本文将介绍如何在​​Druid​​连接池中实现自定义的数据库密码加解密功能,有需要的小伙伴可以参考一下... 目录1. 环境准备2. 密码加密算法的选择3. 自定义 ​​DruidDataSource​​ 的密码解密3

Maven项目中集成数据库文档生成工具的操作步骤

《Maven项目中集成数据库文档生成工具的操作步骤》在Maven项目中,可以通过集成数据库文档生成工具来自动生成数据库文档,本文为大家整理了使用screw-maven-plugin(推荐)的完... 目录1. 添加插件配置到 pom.XML2. 配置数据库信息3. 执行生成命令4. 高级配置选项5. 注意事

在Java中基于Geotools对PostGIS数据库的空间查询实践教程

《在Java中基于Geotools对PostGIS数据库的空间查询实践教程》本文将深入探讨这一实践,从连接配置到复杂空间查询操作,包括点查询、区域范围查询以及空间关系判断等,全方位展示如何在Java环... 目录前言一、相关技术背景介绍1、评价对象AOI2、数据处理流程二、对AOI空间范围查询实践1、空间查

Python+PyQt5实现MySQL数据库备份神器

《Python+PyQt5实现MySQL数据库备份神器》在数据库管理工作中,定期备份是确保数据安全的重要措施,本文将介绍如何使用Python+PyQt5开发一个高颜值,多功能的MySQL数据库备份工具... 目录概述功能特性核心功能矩阵特色功能界面展示主界面设计动态效果演示使用教程环境准备操作流程代码深度解

MySQL数据库实现批量表分区完整示例

《MySQL数据库实现批量表分区完整示例》通俗地讲表分区是将一大表,根据条件分割成若干个小表,:本文主要介绍MySQL数据库实现批量表分区的相关资料,文中通过代码介绍的非常详细,需要的朋友可以参考... 目录一、表分区条件二、常规表和分区表的区别三、表分区的创建四、将既有表转换分区表脚本五、批量转换表为分区

MySQL Workbench工具导出导入数据库方式

《MySQLWorkbench工具导出导入数据库方式》:本文主要介绍MySQLWorkbench工具导出导入数据库方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝... 目录mysql Workbench工具导出导入数据库第一步 www.chinasem.cn数据库导出第二步

Mysql数据库中数据的操作CRUD详解

《Mysql数据库中数据的操作CRUD详解》:本文主要介绍Mysql数据库中数据的操作(CRUD),详细描述对Mysql数据库中数据的操作(CRUD),包括插入、修改、删除数据,还有查询数据,包括... 目录一、插入数据(insert)1.插入数据的语法2.注意事项二、修改数据(update)1.语法2.有