mysql图书馆管理系统的数据.ppt
《mysql图书馆管理系统的数据.ppt》由会员分享,可在线阅读,更多相关《mysql图书馆管理系统的数据.ppt(16页珍藏版)》请在三一办公上搜索。
1、mysql图书馆管理系统的数据库,数据库 library,操作员表 operator书库 books学生信息表 students_information操作过程表 process,操作员表 operator,操作员表 operator,create table operator(id char(9)not null primary key,name varchar(10)not null);insert into operator values(100001230,aa),(100001231,bb),(100001232,cc),(100001233,dd),(100001234,ee),(
2、100001235,ff);,书库 books,书库 books,create table books(title varchar(20)not null,date_of_publication date,author varchar(15)not null,ISBN char(13)not null primary key,number_of_copies int not null,position varchar(30);insert into books values(没有任何借口,2008-11-01,杰伊.瑞芬博瑞,9787500683858,20,二楼 成功/激励),(钢铁是怎样炼
3、成的,1997-05-12,奥斯特洛夫斯基,9787530125403,25,二楼 成功/激励),(水浒传,1998-11-15,施耐庵,9787530112454,10,一楼文学类),(小时代,2009-11-15,郭敬明,9782345612454,1,一楼文学类);,学生信息表 students_information,学生信息表 students_information,create table students_information(id char(9)not null primary key,name varchar(10)not null,sex char(2),phone_n
4、umber char(11),department varchar(10);insert into students_information values 财经财经财经财经计算机科学与运用计算机科学与运用计算机科学与运用计算机科学与运用土木工程);,操作过程表 process,操作过程表 process,create table process(title varchar(20),ISBN char(13),bgname varchar(10),bg_id char(9),operator_name varchar(10),operator_id char(9),btime varchar(2
5、0),gtime varchar(20),is_give bool);insert into process values(书名,isbn号,借/还书人,000000000,操作员姓名,000000000,借书时间,还书时间,1);,借书存储过程,delimiter|create procedure zj_borrow(in book_id char(13),in b_id char(9),in o_id char(9)begin declare booktitle varchar(20);declare borrowname varchar(10);declare op_name varch
6、ar(10);declare bstime varchar(20);declare num int;set num=1;set bstime=now();set booktitle=(select title from books where ISBN=book_id);set borrowname=(select name from students_information where id=b_id);set op_name=(select name from operator where id=o_id);,借书存储过程,if(select number_of_copies from b
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- mysql 图书馆 管理 系统 数据
链接地址:https://www.31ppt.com/p-5441051.html