trying to segregate the Authors and Customer count with respective to book
select Book, count(Author) as Author, count(Customer) as Customer from Books group by Book