Untitled

 avatar
unknown
plain_text
2 years ago
130 B
7
Indexable
SELECT
    1 + FLOOR(Born / 100) AS Century,
    COUNT(*) AS ComposerCount
FROM Composer
GROUP BY Century
ORDER BY Century;
Editor is loading...