SQL - Table Relationships
Given tables
Author, Book, and junction table AuthorBook with columns AuthorID and BookID, what does this query return?SELECT Author.Name, Book.Title FROM Author
JOIN AuthorBook ON Author.ID = AuthorBook.AuthorID
JOIN Book ON Book.ID = AuthorBook.BookID;
