Untitled

mail@pastecode.io avatarunknown
plain_text
12 days ago
130 B
2
Indexable
Never
SELECT
    1 + FLOOR(Born / 100) AS Century,
    COUNT(*) AS ComposerCount
FROM Composer
GROUP BY Century
ORDER BY Century;