版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
1、圖書管理系統(tǒng)數(shù)據(jù)庫設計 M Y SQ L 實現(xiàn)標準化管理部編碼-99968T-6889628-J68568-1689N圖書管理系統(tǒng)數(shù)據(jù)庫設計一、系統(tǒng)概述1、系統(tǒng)簡介圖書管理是每個圖書館都需要進行的工作。一個設計良好的圖書管理系統(tǒng)數(shù)據(jù)庫能夠給圖書管理帶來很大的便利。2、需求分析圖書管理系統(tǒng)的需求定義為:1. 學生可以直接通過借閱終端來查閱書籍信息,同時也可以查閱自己的借閱信息。2. 當學生需要借閱書籍時,通過賬號密碼登陸借閱系統(tǒng),借閱系統(tǒng)處理學生的借閱, 同時修改圖書館保存的圖書信息,修改被借閱的書籍是否還有剩余,同時更新學生個人的借閱信息。3. 學生借閱圖書之前需要將自己的個人信息注冊,登陸時
2、對照學生信息。4. 學生直接歸還圖書,根據(jù)圖書編碼修改借閱信息5. 管理員登陸管理系統(tǒng)后,可以修改圖書信息,增加或者刪除圖書信息6. 管理員可以注銷學生信息。通過需求定義,畫出圖書管理系統(tǒng)的數(shù)據(jù)流圖:數(shù)據(jù)流圖二、系統(tǒng)功能設計畫出系統(tǒng)功能模塊圖并用文字對各功能模塊進行詳細介紹。 系統(tǒng)功能模塊圖:三、數(shù)據(jù)庫設計方案圖表1、系統(tǒng) E-R 模型總體 E-R 圖:精細化的局部 E-R 圖: 學生借閱-歸還 E-R 圖: 管理員 E-R 圖:2、設計表給出設計的表名、結(jié)構(gòu)以及表上設計的完整性約束。student:列名數(shù)據(jù)類型是否為空/性質(zhì)說明stu_idintnot null /PK標明學生唯一學號stu
3、_namevarcharnot null學生姓名stu_sexvarcharnot null學生性別stu_ageintnot null學生年齡stu_provarcharnot null學生專業(yè)stu_gradevarcharnot null學生年級stu_integrityintnot學生誠信級null/default=1book:列名數(shù)據(jù)類型是否為空/性質(zhì)說明book_idintnot null / PK唯一書籍序號book_namevarcharnot null書籍名稱book_authorvarcharnot null書籍作者book_pubvarcharnot null書籍出版社b
4、ook_numintnot null書籍是否在架上book_sortvarcharnot null書籍分類book_recorddatatimenull書籍登記日期book_sort:列名數(shù)據(jù)類型是否為空/性質(zhì)說明sort_idvarcharnot null / PK類型編號sort_namevarcharnot null類型名稱borrow:存儲學生的借書信息列名數(shù)據(jù)類型是否為空/性質(zhì)說明student_idvarcharnot null / PK學生編號book_idvarcharnot null / PK書籍編號borrow_datedatatimenull借書時間expect_retu
5、rn_datedatetimenull預期歸還時間return_table:存儲學生的歸還信息列名數(shù)據(jù)類型是否為空/性質(zhì)說明student_idvarcharnot null / PK學生編號book_idvarcharnot null / PK書籍編號borrow_datedatetimenull借書時間return_datedatatimenull實際還書時間ticket:存儲學生的罰單信息列名數(shù)據(jù)類型是否為空/性質(zhì)說明student_idvarcharnot null / PK學生編號book_idvarcharnot null / PK書籍編號over_dateintnull超期天數(shù)t
6、icket_feefloatnull處罰金額manager:列名數(shù)據(jù)類型是否為空/性質(zhì)說明manager_idvarcharnot null / PK管理員編號manager_namevarcharnot null管理員姓名manager_agevarcharnot null管理員年齡manager_phonevarcharnot null管理員電話3、設計索引給出在各表上建立的索引以及使用的語句。student:1.為 stu_id 創(chuàng)建索引,升序排序sql:create index index_id on student(stu_id asc); 2.為 stu_name 創(chuàng)建索引,并且降
7、序排序sql:alter table student add index index_name(stu_name, desc); 插入索引操作和結(jié)果如下所示:mysql> create index index_id on student(stu_id asc); Query OK, 0 rows affectedRecords: 0Duplicates: 0Warnings: 0mysql> alter table studentadd indexindex_name(stu_name desc);Query OK, 0 rows affectedRecords: 0Duplica
8、tes: 0Warnings:0mysql>book:1. 為 book_id 創(chuàng)建索引,升序排列sql:create index index_bid on book(book_id);2. 為 book_record 創(chuàng)建索引,以便方便查詢圖書的登記日期信息,升序: sql:create index index_brecord on book(book_record);插入索引的操作和結(jié)果如下所示:mysql> create index index_bid on book(book_id); Query OK, 0 rows affectedRecords: 0Duplicate
9、s: 0Warnings: 0mysql> create index index_brecord on book(book_record); Query OK, 0 rows affectedRecords: 0Duplicates: 0Warnings: 0 borrow:1.為 stu_id 和 book_id 創(chuàng)建多列索引:sql:create index index_sid_bid on borrow(stu_id asc, book_id asc); 插入索引的操作和結(jié)果如下所示:mysql> create index index_sid_bid on borrow(st
10、u_id asc, book_id asc); Query OK, 0 rows affectedRecords: 0Duplicates: 0Warnings: 0 return_table:1.為 stu_id 和 book_id 創(chuàng)建多列索引:sql:create index index_sid_bid on return_table(stu_id asc, book_id asc); 插入索引的操作和結(jié)果如下所示:mysql> create index index_sid_bid_r on return_table(stu_id asc, book_id asc);Query O
11、K, 0 rows affectedRecords: 0Duplicates: 0Warnings: 0 ticket:1. 為 stu_id 和 book_id 創(chuàng)建多列索引:sql:create index index_sid_bid on ticket(stu_id asc, book_id asc); 插入索引的操作和結(jié)果如下所示:mysql> create index index_sid_bid on ticket(stu_id asc, book_id asc); Query OK, 0 rows affectedRecords: 0Duplicates: 0Warnings
12、: 0 manager:1.為 manager_id 創(chuàng)建索引:sql:create index index_mid on manager(manager_id); 插入索引的操作和結(jié)果如下所示:mysql> create index index_mid on manager(manager_id); Query OK, 0 rows affectedRecords: 0Duplicates: 0Warnings: 04、設計視圖給出在各表上建立的視圖以及使用的語句。1. 在表 student 上創(chuàng)建計算機專業(yè)(cs)學生的視圖 stu_cs: sql: create view stu_
13、cs asselect * from studentwhere pro = cs; 操作和結(jié)果:mysql>create view stu_cs as select *from studentwhere stu_pro = 'cs' Query OK, 0 rows affected2. 在表 student, borrow 和 book 上創(chuàng)建借書者的全面信息視圖 stu_borrow: sql: create view stu_borrow asselect student.stu_id, book.book_id, student.stu_name, book.bo
14、ok_name, borrow_date,adddate(borrow_date,30) expect_return_datefrom student, book, borrowwhere student.stu_id = borrow.stu_id and book.book_id = borrow.book_id;操作和結(jié)果:mysql> create view stu_borrow asselect student.stu_id, book.book_id, student.stu_name, book.book_name, borrow_date,adddate(borrow_d
15、ate,30) expect_return_datefrom student, book, borrowwhere student.stu_id = borrow.stu_id and book.book_id = borrow.book_id;Query OK, 0 rows affected3. 創(chuàng)建類別 1 的所有圖書的視圖 cs_book: sql: create view cs_book asselect * from bookwhere book.book_sort in from book_sortwhere sort_id = 1); 操作和結(jié)果顯示:mysql>crea
16、te view cs_book as select *from bookwhere book.book_sort in (select book_sort.sort_name from book_sortwhere sort_id = 1); Query OK, 0 rows affected4. 創(chuàng)建個人所有借書歸還紀錄視圖 stu_borrow_return: sql:create view stu_borrow_return asselect student.stu_id, student.stu_name, book.book_id, book.book_name,return_tab
17、le.borrow_date,return_table.return_date from student, book, return_tablewhere student.stu_id = return_table.stu_id and book.book_id = return_table.book_id;5、設計觸發(fā)器給出在各表上建立的觸發(fā)器以及使用的語句。1. 設計觸發(fā)器 borrow, 當某學生借書成功后,圖書表相應的圖書不在架上,變?yōu)?0: sql:create trigger borrow after insert on borrow for each rowbeginupdate
18、 book set book_num = book_num 1 where book_id = new.book_id;end操作與結(jié)果顯示: mysql> delimiter $mysql> create trigger trigger_borrow-> after insert on borrow-> for each row-> begin-> update book set book_num = book_num - 1-> where book_id = new.book_id;-> end-> $Query OK, 0 rows
19、 affected在插入表 borrow 之前,book_id = 1 的圖書還在架上,為 1: 學生 1 借了這本書后,在 borrow 中插入了一條記錄:在 borrow 中插入這條記錄后,book_id =1 的圖書,不在架上,為 0:2. 設計觸發(fā)器 trigger_return, 還書成功后,對應的書籍book_num 變?yōu)?1: sql:create trigger trigger_return after insert on return_table for each rowbeginupdate book set book_num = book_num + 1 where bo
20、ok_id = new.book_id;end還書時在 return_table 插入表項: 此時圖書歸還架上:3. 定義定時器(事件)eventJob,每天自動觸發(fā)一次,掃描視圖stu_borrow,若發(fā)現(xiàn)當前有預期歸還時間小于當前時間,則判斷為超期,生成處罰記錄,這個定時器將每天定時觸發(fā)存儲過程 proc_gen_ticket:sql:create event if not exists eventJobon schedule every 1 DAY/*每天觸發(fā)*/ on completion PRESERVEdo call proc_gen_ticket(getdate(); /*調(diào)用存
21、儲過程*/ set global event_scheduler = 1;alter event eventJob on completion preserve enable; /*開啟定時器*/操作和結(jié)果顯示:1). 學生 1 借了圖書 1,生成借書記錄 stu_borrow 視圖,如下:2). 當他在 1 月 27 日前還書時,沒有生成罰單:3). 當他在 1 月 27 日后還書時,生成罰單:4. 設計觸發(fā)器 trigger_credit,若處罰記錄超過 30 條,則將這個學生的誠信級設置為 0,下次不允許借書:sql:create trigger trigger_credit after
22、 insert on ticketfor each row beginthen new.stu_id;endif (select count(*) from ticket where stu_id=new.stu_id)>30 update student set stu_integrity = 0 where stu_id =end if;操作和結(jié)果顯示,測試時選擇插入 ticket 項大于 3,因為 30 太大了,不容易測試: 學生 1 超過 3 次超期歸還圖書后,產(chǎn)生了 4 條罰單:此時觸動觸發(fā)器 trigger_credit,將學生 1 的誠信級設置為 0:四、應用程序設計與編碼
23、實現(xiàn)1、系統(tǒng)實現(xiàn)中存儲函數(shù)和存儲過程的設計要求給出功能描述和代碼。1. 設計存儲過程,產(chǎn)生罰單 proc_gen_ticket:當日期超過預定歸還日期時,產(chǎn)生罰單,并將記錄寫入表 ticket 中,這個存儲過程在定時器 eventJob 中調(diào)用:sql:create procedure proc_gen_ticket(in currentdate datetime) BEGINdeclare cur_date datetime; set cur_date = currentdate;replace into ticket(stu_id, book_id, over_date, ticket_f
24、ee) select stu_id, book_id,datediff(cur_date,stu_borrow.expect_return_date),0.1*datediff(cur_date,s tu_borrow.expect_return_date)from stu_borrowwhere cur_date>stu_borrow.expect_return_date;end操作和結(jié)果顯示:1). 學生 1 借了圖書 1,生成借書記錄 stu_borrow 視圖,如下:2). 當他在 1 月 27 日前還書時,沒有生成罰單:3). 當他在 1 月 27 日后還書時,生成罰單:2.
25、設計學生注冊信息存儲過程:學生注冊信息 stu_register sql:create procedure stu_register(in stu_id int, in stu_name varchar(20), in stu_sex varchar(20), in stu_age int, in stu_pro varchar(20), in stu_grade varchar(20)begininsert into student(stu_id, stu_name, stu_sex, stu_age, stu_pro, stu_grade)values(stu_id, stu_name,
26、stu_sex, stu_age, stu_pro, stu_grade);end3. 設計管理員注冊信息存儲過程:ma_register sql:create procedure ma_register(in ma_id int, in ma_name varchar(20), in ma_age int, in ma_phone int)BEGINinsert into managervalues(ma_id, ma_name, ma_age, ma_phone);END4. 借書過程的實現(xiàn):1) 設計存儲函數(shù),func_get_credit,返回學生的誠信級:create functio
27、n func_get_credit(stu_id int) returns int beginreturn(select stu_integrity from student where student.stu_id = stu_id);end2) 設計存儲函數(shù),func_get_booknum,返回書籍是否在架上:create function func_get_booknum(book_id int) returns int beginreturn(select book_num from book where book.book_id = book_id); end3) 設 計 存 儲
28、過 程proc_borrow , 調(diào) 用func_get_credit和func_get_booknum,判斷這個學生誠信度和書籍是否在架上,若為真,則借書成功,在 borrrow 表中插入紀錄;否則提示失?。篶reate procedure proc_borrow(in stu_id int, in book_id int, in borrow_date datetime)beginif func_get_credit(stu_id) = 1 and func_get_booknum(book_id) =1 thenelseinsert into borrowvalues(stu_id, b
29、ook_id, borrow_date);select 'failed to borrow'end if;end實驗操作與結(jié)果顯示: borrow 紀錄為空:執(zhí)行函數(shù),學生 1 借圖書 2: call proc_borrow(1,2,now(); 學生 1 的誠信級為 0:借書失?。盒薷膶W生 1 誠信級為 1: 此時借書成功:5. 還書存儲過程 proc_return:當還書時,查看是否書是否超期,即查詢 ticket 表項,當發(fā)現(xiàn)超期,提示交罰單后再次還書,如沒有超期,則紀錄歸還項目到 return_table 中,并且刪除借書紀錄(以免還書后定時器仍然掃描這個紀錄): sq
30、l:create procedure proc_return(in stu_id int, in book_id int, in return_date datetime)beginDECLARE borrowdate datetime;if (select payoff from ticket where ticket.stu_id = stu_id and ticket.book_id=book_id) = 1 then /*判斷是否交了罰單,1 表示沒有交*/select 'please pay off the ticket'else /*紀錄歸還項目到 return_t
31、able 中,并且刪除借書紀錄*/ set borrowdate = (select borrow_date from borrow whereborrow.stu_id = stu_id and borrow.book_id = book_id);insert into return_tablevalues(stu_id, book_id, borrowdate, return_date); delete from borrowwhere borrow.stu_id = stu_id and borrow.book_id =book_id;endend if;實驗操作與結(jié)果顯示: 學生 1
32、借了圖書 2:超期產(chǎn)生了罰單,沒有交罰單,payoff=1: 此時調(diào)用還書過程:call proc_return(1, 2, now(); 提示交罰單:交罰單,調(diào)用 proc_payoff:call proc_payoff(1, 2); 交罰單成功,payoff = 0; 此時再次調(diào)用還書過程:call proc_return(1, 2, now();還書成功,在 return_table 生成了還書紀錄:6. 交罰單存儲過程:修改罰單中 payoff 段為 0,表明罰單已交:create procedure proc_payoff(in stuid int, in bookid int) b
33、eginendupdate ticket set payoff = 0where ticket.stu_id = stuid and ticket.book_id = bookid; select succeed;交罰單,調(diào)用 proc_payoff:call proc_payoff(1, 2); 交罰單成功,payoff = 0;2、功能實現(xiàn)按各功能模塊進行描述。要求:畫出流程圖并給出實現(xiàn)代碼。創(chuàng)建學生統(tǒng)一賬戶,賬戶名:student_account,并且授予權(quán)限:sql:create user 'student_account''localhost'grant insert,select on student to 'student_account''localhost' grant select on book to 'student_account''localhost'grant insert,select on borrow to 'student_accoun
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025下半年四川古藺縣事業(yè)單位招考報到高頻重點提升(共500題)附帶答案詳解
- 2025下半年四川樂山市馬邊彝族自治縣教師招聘6人歷年高頻重點提升(共500題)附帶答案詳解
- 2025上海浦東新區(qū)房地產(chǎn)(集團)限公司招聘46人高頻重點提升(共500題)附帶答案詳解
- 2025上半年黑龍江伊春市事業(yè)單位招聘工作人員94人歷年高頻重點提升(共500題)附帶答案詳解
- 2025上半年安徽蚌埠固鎮(zhèn)縣事業(yè)單位招聘45人高頻重點提升(共500題)附帶答案詳解
- 2025上半年四川南充蓬安縣招聘事業(yè)單位工作人員103人歷年高頻重點提升(共500題)附帶答案詳解
- 2025上半年云南事業(yè)單位聯(lián)考招聘高頻重點提升(共500題)附帶答案詳解
- 2024年度學校食堂食品安全與物業(yè)管理合同3篇
- 豫章師范學院《戰(zhàn)略人力資源管理》2023-2024學年第一學期期末試卷
- 2025年度國家公派留學項目招生選拔及錄取合同3篇
- 《地質(zhì)災害監(jiān)測技術(shù)規(guī)范》
- 2024-2030年中國云母制品制造市場發(fā)展狀況及投資前景規(guī)劃研究報告
- 2025年上半年內(nèi)蒙古鄂爾多斯伊金霍洛監(jiān)獄招聘17名(第三批)易考易錯模擬試題(共500題)試卷后附參考答案
- 24秋國家開放大學《農(nóng)產(chǎn)品質(zhì)量管理》形考任務1-2+形考實習1-3參考答案
- 80、沈陽桃仙機場二平滑工程冬期施工方案
- GB/T 29468-2024潔凈室及相關(guān)受控環(huán)境圍護結(jié)構(gòu)夾芯板
- 2024年度房屋裝修工程合同
- 深圳大學《射頻識別原理與應用》2023-2024學年第一學期期末試卷
- 愛勞動課件教學課件
- 云南省高中信息技術(shù)學業(yè)水平考試知識點復習
- 綜合評分法評分細則
評論
0/150
提交評論