5.Consider the following library schema
Books (book_no,title,authors,publisher)
Borrower(borrower_id, name, DOB, job)
Borrowed(borrower_id,book_no,date)
Write the following queries in relational algebra
- a. Find the name and the borrower_id of borrowers who have borrowed more than 3 books published by “Wiley”
- b. Find the names of borrowers who have borrowed any book published by “wiley”
- c. Find the average number of books borrowed by each borrowers,.