In the books table, find the title that appears the most times.
Return a single row with:
most_used_title
title_count
In case of a tie, choose the title that comes first alphabetically.
Hints
Hint 1
Group books by book_name and count how many rows are in each group.
Hint 2
Order first by the count descending and then by book_name ascending.
Hint 3
Use LIMIT 1 to return only the most used title.