Library database schema to record information of books borrowed by its members.
member(memb_no, name, dob)
books(isbn, title, authors, publisher)
borrowed(memb_no, isbn, date)
Write SQL and two RA queries for the following:
Find the top two most popular authors (i.e., names of two authors whose books have been checked out in highest numbers by library members).