Untitled

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