Untitled
Anonymous
plain_text
09/11/2023 5:25 PM
176 B
18
Indexable
SELECT
First,
Last,
1 + FLOOR(Born / 100) AS CenturyBorn
FROM Composer
WHERE Last LIKE 'M%'
ORDER BY Born DESC;
Editor is loading...
SELECT
First,
Last,
1 + FLOOR(Born / 100) AS CenturyBorn
FROM Composer
WHERE Last LIKE 'M%'
ORDER BY Born DESC;