The document outlines the creation and insertion of data into five tables: books, students, issued_books, digital_resources, and library_staff. Each table includes various fields such as IDs, titles, authors, publication years, and contact information. The data reflects a library system with details on books, students borrowing them, digital resources available, and library staff information.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
7 views1 page
All Table Syntax
The document outlines the creation and insertion of data into five tables: books, students, issued_books, digital_resources, and library_staff. Each table includes various fields such as IDs, titles, authors, publication years, and contact information. The data reflects a library system with details on books, students borrowing them, digital resources available, and library staff information.
insert into books value(12,'atomic habits','james clear',2018,13), (03,'the psycology of money','morgan housel',2020,07),(09,'too good to be true','prajakta koli',2021,19),(02,'a man called ove','fredrik backman',2013,20);
varchar(10),course varchar(50),contact int(15)); insert into students value(03,'Dashanxi','a24cse003','btech(cse)',8866683747), (37,'krisha','a24cse037','bca',8511451908), (29,'kalp','a24cse029','bca',9313799190), (12,'aryan','a24cse012','btech(cse)',7359563504);
varchar(255),author varchar(100),publication_year int(5),file_format ENUM('pdf','docx','mp3','epub'),file_size_MB DECIMAL(5,2),upload_date DATE,uploaded_by varchar(100),access_type ENUM('Public','Restricted')); insert into digital_resources value(01,'atomic habits','james clear',2018,'pdf','5.2','2019-06-07','calon jerry','Public'),(02,'the psycology of money','morgan housel',2020,'docx','3.9','2020-11-13','helly deyona','Public'), (03,'too good to be true','prajakta koli',2021,'mp3','16.3','2023-05-28','jack glan','Restricted'),(04,'a man called ove','fredrik backman',2013,'epub','9.7','2016-12-25','selby finley','Public');