0
12kviews
Design a schema in SQL for a Library System. Show one example each for PRIMARY KEY and FOREIGN KEY constraint.

Design a schema in SQL for a Library System. Show one example each for PRIMARY KEY and FOREIGN KEY constraint. Create one assertion for the following Constraint:

“No member can borrow more than three books at a time"


Mumbai University > Information Technology > Sem 5 > Advanced Database Management System

Marks: 10M

1 Answer
1
471views

ER Diagram for Library System is shown below:

enter image description here

Converting ER to Schema:

Book

| BookId | Author | ISBN | Published_Year | Remarks | |--------|--------|------|----------------|---------|

User

| Username | First_Name | Last_Name | Password |
|----------|------------|-----------|----------|

Lending

| Lending_Id | Username | Book_Id | Date_Time_borrowed |
|------------|----------|---------|--------------------|

SQL for above …

Create a free account to keep reading this post.

and 2 others joined a min ago.

Please log in to add an answer.