Select (SQL): Difference between revisions

Content deleted Content added
m linking
No edit summary
Line 71:
 
<syntaxhighlight lang="sql">
SELECT Book.title AS Title,
count(*) AS Authors
FROM Book
JOIN Book_author
ON Book.isbn = Book_author.isbn
GROUP BY Book.title;
</syntaxhighlight>