Skip to content

Library management system is to provide an easy system to issue a book from the library if it is available or he/she can even use e-book.

License

Notifications You must be signed in to change notification settings

Khushi-Mattu/Library-Management-System-SE

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

all the database queries:

create database CREATE DATABASE library;

create books table
CREATE TABLE books ( bid INT PRIMARY KEY, book_item VARCHAR(30) NOT NULL, a_name varchar(30),des VARCHAR(150) NOT NULL, price INT NOT NULL );

create user table
CREATE TABLE userRec (uid INT PRIMARY KEY auto_incremenet, name VARCHAR(30) NOT NULL, email VARCHAR(150) NOT NULL, pass VARCHAR(150) NOT NULL, contact INT NOT NULL);

insert data in the user table
INSERT INTO userRec VALUES(1,'Admin','admin@gmail.com','12345',999909999); INSERT INTO userRec VALUES(2,'Uditi','uditi@gmail.com','qwerty',9726871261); INSERT INTO userRec VALUES(3,'Khushi','khushi@gmail.com','asdfg',9971183123);

create bill table
CREATE TABLE restaurant.bill( billid int primary key auto_increment, bill int, uid int, CONSTRAINT fk_product_1 foreign key (uid) references userRec(uid));

About

Library management system is to provide an easy system to issue a book from the library if it is available or he/she can even use e-book.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published