-- Display all books and their authors/co-authors in a simple tabular format.
-- Example:
-- book_name | author_name
-- --------------------|--------------
-- The Master and Margarita | Igor
-- Eugene Onegin | Ivan
-- Display all authors and the number of their books.
-- Example:
-- author_name | book_count
-- ------------|-----------
-- Igor | 2
-- Ivan | 1