SQL - Table Relationships
Given these tables:
What will this query return?
Authors(AuthorID, Name)Books(BookID, Title, AuthorID)What will this query return?
SELECT Name, COUNT(BookID) AS BookCount FROM Authors LEFT JOIN Books ON Authors.AuthorID = Books.AuthorID GROUP BY Name;
