收藏 分销(赏)

数据库课程设计《SQLServer图书馆管理系统》实例讲解.doc

上传人:二*** 文档编号:4495853 上传时间:2024-09-25 格式:DOC 页数:14 大小:1.04MB
下载 相关 举报
数据库课程设计《SQLServer图书馆管理系统》实例讲解.doc_第1页
第1页 / 共14页
亲,该文档总共14页,到这儿已超出免费预览范围,如果喜欢就下载吧!
资源描述

1、(完整word版)数据库课程设计SQLServer图书馆管理系统实例讲解数据库系统概论课程设计 图书馆数据库管理系统 小组成员: * * * QQ:目录 序言1 一、图书馆管理系统 E-R 图2 二、图书馆管理系统功能实现示意图3 三、图书馆管理系统功能图例4 3.1 读者借阅图书4 3.2 读者归还图书4 3.3 读者续借图书5 3.4 读者查询借阅图书情况5 3.5 读者检索图书信息6 四、图书馆管理系统附加功能7 4.1 往学生表中插入列系部,其值等于学号中代表系部的位的值,再插入列专业号,其值等于学号中代表专业的位的值7 4.2 查询每个学生对书本的借阅数量9 4.3 查询各个专业的学

2、生借阅书本的数量11 五、图书馆管理系统数据库、数据表源代码12 5.1 图书馆管理系统数据库源代码12 5.2 图书馆管理系统数据表源代码12 六、图书馆管理系统存储过程源代码15 6.1 读者借阅图书存储过程15 6.2 读者还书存储过程17 6.3读者续借图书存储过程18 6.4 读者查询借阅图书情况存储过程19 6.5 读者检索的图书信息存储过程22 七、图书馆管理系统触发器源代码23 7.1 借书要求(书本没有库存,则无法进行借书操作)23 7.2 借书要求(读者最多借阅量)24 7.3 续借次数要求25 7.4 读者还书信息插入RDeleted表26 主蒸汽及高、低温再热蒸汽系统采

3、用单元制系统,均采用“双管、单管、双管”的布置方式。主蒸汽管道和高温再热蒸汽管道分别从过热器和再热器的出口联箱的两侧引出,然后汇成一根母管,到汽轮机前再分成两根支管分别接入高压缸和中压缸左右侧主汽关断阀和再热关断阀。the oil level to the normal oil level. (2) for the secondary prevention of the leakage of cooling water pipe fittings, valve parts before installation to check . 4.2 measures to eliminate qual

4、ity defects of cables cable laying in front of the cable construction, design, supervision and construction units to deliver the design, and drawing the third. Combined the engineering field to find fault, adding omitted items. Because the unit used computer DCS control and adds a great deal of cont

5、rol and signal cables. So you should carefully review, checks for missing physical cable, ready for construction and to verify cable length, specifications, familiar with the cable channel and the device location and bracket cable bracket on the section number. At the time of preparation of the inve

6、ntory of cable, first of all, the professional carefully study electrical schematics, in accordance with the principle of accounting the cable path cable volume, the number of cores used, total volume and design inventory check cable to cable with and without omission, laying of the cable in order t

7、o ensure the process does not put a cable one cable. Finally, at the time of inventory, prepared to take the same path the cables together. Inventory preparation is completed, later in each enclosure affixed on both sides of each side of the cable you want to lay accurately verify cable lengths and

8、set aside. Bridge should be combined, correcting errors, avoid straight, no cable bridge scaffolding used in the construction, not allowed to use electricity (fire) cutting, fix cable tray, cable tray is not allowed as a welding ground connection or cable tray cannot be used for other processes* 12

9、* 序言 本图书馆管理系统谨根据实际需求所创建,创建有如下八个数据表:Book(图书信息表),Dept(学生系部信息表),Major(学生专业信息表),Student(学生信息表),StudentBook(学生借阅图书信息表),Teacher(教师信息表),TeacherBook(教师借阅图书信息表),RDeleted(读者还书信息表)等。这些数据表结合图书馆数据库中的五个存储过程,即实现了普通图书馆的大部分功能。如读者借阅图书功能(Execute RBorrowBook 读者号,图书分类号),读者归还图书功能(Execute RReturnBook 读者号,图书分类号),读者续借图书功能(E

10、xecute RRenewBook 读者号,图书分类号),读者查询图书借阅情况功能(Execute RQueryBook 读者号),读者检索的图书信息功能(Execute RIndexBook 关键字)等。具体的功能表现皆在“第二章:图书馆管理系统功能”中有详细的图例说明。本图书馆管理系统谨根据实际需要,创建了七个触发器,就此,创作者对这些触发器做如下说明:1、 tri_Book 功能表现:只有在图书馆内相关书籍尚有库存的情况下,读者才可以进行借阅操作2、 tri_SborrowNum 功能表现:控制学生的图书借阅量在5本以内(包括5本)3、 tri_SrenewBook 功能表现:控制学生续

11、借图书次数在3次以内(包括3次)4、 tri_SreturnBook 功能表现:将学生的还书信息插入RDeleted表5、 tri_TborrowNum 功能表现:控制教师的图书借阅量在10本以内(包括10本)6、 tri_TrenewBook 功能表现:控制学生续借图书次数在4次以内(包括4次)7、 tri_TreturnBook 功能表现:将教师的还书信息插入RDeleted表本图书馆管理系统设计思路较为肤浅,但在一定程度上实现了图书馆数据库管理系统的实用功能。初次设计数据库,其中肯定会有不足之处,还望读者谅解!本课程设计附有“图书馆数据库管理系统的所有源代码”,您可以根据需要在“第四章节

12、”至“第七章节”中进行查看,或查看与本课程设计处于同一目录下的 *.sql 源代码文件!作者:* * * 一、图书馆管理系统 E-R 图教师借阅图书期限较长,并且允许借阅的书本量较大。因此,将教师借阅关系与学生借阅关系分开较为适宜。分类号书名作者出版社类别出版日期ISBN价格总量借出量年龄电话性别姓名学号系部编号系部名称专业编号专业名称归属归属系部专业归属学生学号与专业编号的联系学生学号与系部编号的联系系部编号与专业编号的联系借阅日期续借次数借阅日期续借次数学生图书学生借阅教师借阅教师工号姓名性别年龄职称电话二、图书馆管理系统功能实现示意图相关信息写入借阅图书RBorrowBook图书信息表B

13、ook学生借阅图书信息表 StudentBooktri_Book图书库存量减1tri_SborrowNum借阅量未超5本学生借阅图书信息表 StudentBook由于教师与学生的借阅图书、归还图书等等过程大致相同,在此,仅借学生有关表对象信息来对各存储过程作简要说明: 相关信息写入归还图书RReturnBook读者还书信息表RDeleted图书信息表Book学生借阅图书信息表 StudentBooktri_SreturnBook图书库存量加1tri_SborrowNum删除借阅记录续借图书RRenewBooktri_SrenewBook续借次数不超三次,则将续借次数加1 相关信息写入学生借阅图

14、书信息表 StudentBook学生借阅图书信息表 StudentBook专业信息表Major学生信息表Student系部信息表Dept图书信息表Book查询图书借阅情况 RQueryBook获取图书相关信息计算学生专业信息计算学生系部信息获取学生相关信息综合信息输出图书信息表Book由存储过程RindexBook 查找匹配图书信息 综合信息输出给读者读者检索图书RIndexBook三、图书馆管理系统功能图例3.1 读者借阅图书Execute RBorrowBook 读者号,图书分类号-读者借阅图书实例use LibrarySystemgoexec RBorrowBook T,D630.3 L

15、836-其中T以T为标识,代表教师编号exec RBorrowBook S,D630.3 L836-其中S以S为标识,代表学生学号go -结果如下:3.2 读者归还图书Execute RReturnBook 读者号,图书分类号-读者归还图书实例use LibrarySystemgoexec RReturnBook T,D630.3 L836exec RReturnBook S,D630.3 L836go -结果如下:3.3 读者续借图书Execute RRenewBook 读者号,图书分类号-读者续借图书实例use LibrarySystemgo-读者借阅图书exec RBorrowBook

16、T,D630.3 L836exec RBorrowBook S,D630.3 L836gowaitfor delay 0:0:5-读者续借图书exec RRenewBook T,D630.3 L836exec RRenewBook S,D630.3 L836go -结果如下:3.4 读者查询借阅图书情况Execute RQueryBook 读者号-读者查询图书借阅情况实例use LibrarySystemgoexec RQueryBook Texec RQueryBook Sgo-结果如下:3.5 读者检索图书信息Execute RIndexBook 关键词-读者检索图书信息实例use Lib

17、rarySystemgoexec RIndexBook 数据库go-结果如下:四、图书馆管理系统附加功能4.1 往学生表中插入一列系部,其值等于学号中代表系部的位的值,再插入一列专业号,其值等于学号中代表专业的位的值-往学生表S中插入一列系部,其值等于学号中代表系部的位的值use LibrarySystemgoalter table Studentadd SdeptNo char(2)godeclare sno char(10),total int,i intselect total=count(*),i=1from Studentwhile(i=total)begin-查询数据表第i 行数据

18、的SQL语句select top 1 sno=Sno from Student where Sno not in(select top (i-1) Sno from Student) update Studentset SDeptNo=substring(sno,4,2)where Sno=snoset i=i+1endselect * from Studentgo-结果如下: -往学生表S中插入一列专业号,其值等于学号中代表专业的位的值use LibrarySystemgoalter table Studentadd SMajorNo varchar(50)godeclare sno cha

19、r(10),total int,i intselect total=count(*),i=1from Studentwhile(i=total)begin-查询数据表第i 行数据的SQL语句select top 1 sno=Sno from Student where Sno not in(select top (i-1) Sno from Student) update Studentset SMajorNo=substring(sno,4,4)where Sno=snoset i=i+1endgo-结果如下: 4.2 查询每个学生对书本的借阅数量-查询每个学生对书本的借阅数量use Lib

20、rarySystemgoselect Student.Sno 学号,Sname 姓名,Book.ClassifyNo 图书分类号,Bname 书名from StudentBook,Student,Bookwhere Student.Sno=StudentBook.Sno and StudentBook.ClassifyNo=Book.ClassifyNoorder by Student.Snocompute count(Student.Sno) by Student.Snogo-结果如下:4.3 查询各个专业的学生借阅书本的数量use LibrarySystemgodeclare tempDe

21、pt table(专业编号char(4)primary key,专业varchar(30)not null,学生借阅书本数量int default 0)Insert into tempDept(专业编号,专业) select Mno,Mname from Majordeclare i int,total int,no char(10)select total=count(*),i=1 from StudentBookwhile(itotal) beginselect top 1 no=Sno from StudentBook where Sno not in(select top (i-1) Sno from StudentBook)update tempDeptset 学生借阅书本数量=学生借阅书本数量+1where 专业编号=substring(no,4,4)set i=i+1endselect * from tempDeptselect total as 学生借阅书本总量go -结果如下:后续“数据库课程设计之SQL Server图书馆管理系统源码”五、图书馆管理系统数据库、数据表源代码六、图书馆管理系统存储过程源代码七、图书馆管理系统触发器源代码QQ:

展开阅读全文
部分上传会员的收益排行 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助手
搜索标签

当前位置:首页 > 学术论文 > 其他

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

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

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

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

gongan.png浙公网安备33021202000488号   

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

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

客服