Wenn wir davon ausgehen, dass Sie eine normalisierte Struktur haben, müssen Sie einfach:
SELECT a.author, count(*)
FROM books b
INNER JOIN author a ON a.author_id=b.author_id
GROUP BY a.author
Wenn wir davon ausgehen, dass Sie eine normalisierte Struktur haben, müssen Sie einfach:
SELECT a.author, count(*)
FROM books b
INNER JOIN author a ON a.author_id=b.author_id
GROUP BY a.author