Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Assignment 4 For this project you will create a database for a virtual library. The books from the library can be checked out by Users

Assignment 4

For this project you will create a database for a virtual library.

The books from the library can be checked out by Users for a fixed period of time. For this assignment let us assume that books cannot be renewed. A User may check out any number of books at a time. Since the books are eBooks, any number of Users can check out a book at the same time.

The library contains a collection of eBooks. Basic information about each book needs to be stored

o Title, primary author, secondary authors (if any), date of first publication, number of pages, publisher, translator (if any)

o For non-fiction books, a list of the key topics covered by the book needs to be stored. For works of fiction (including poems, plays, novels, collection of stories), the topic is just fiction.

For each book, we also need to store information about when it was checked out by which User.

For each User we need to store certain information

o User id, name, phone, address, university affiliation (if any)

Design/create the database tables carefully first.

Insert at least 3 books, 5 users. The database must contain information about at least 5 check outs of books.

Write the queries below (Obviously, your database must be designed so that it can support these queries):

1. Which books have been checked out since such and such date.

2. Which users have checked out such and such book.

3. How many books does the library have on such and such topic.

4. Which users from New York University have checked out books on Machine Learning between this date and that date.

The virtual library has added a new social media feature. Users can now post and view comments about books they have checked out. Your database design must support this feature. For each book and User, we need to store the comments made about the book by the User

Each check out must contain at least 3 comments about the book by the User who has checked out the book.

Write the queries below (Again, your database must be designed so that it can support these queries)

1. What comments have been made by any User about such and such book between such and such dates, ordered from the most recent to the least recent.

2. Show for a given User, what comments they have made about such and such book.

What to Submit: 1. Your database design (similar to what we did in Lecture 1) 2. The code to create the database 3. The code to populate the database 4. The code for the queries 5. Take screenshots of the outputs of your queries This is doable without any SQL tool but of course you can check your work better with one. You can use Access, SAS SQL, MySQL, etc.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Medical Image Databases

Authors: Stephen T.C. Wong

1st Edition

1461375398, 978-1461375395

More Books

Students also viewed these Databases questions