You are viewing a single comment's thread. Return to all comments →
This works for me:
SELECT Name || '(' || SUBSTR(Occupation, 1, 1) || ')' AS name_occupation FROM OCCUPATIONS ORDER BY Name ASC; SELECT 'There are a total of ' || COUNT(*) || ' ' || LOWER(Occupation) || 's.' AS total_occupations FROM OCCUPATIONS GROUP BY Occupation ORDER BY COUNT(*) ASC, LOWER(Occupation);
Seems like cookies are disabled on this browser, please enable them to open this website
The PADS
You are viewing a single comment's thread. Return to all comments →
This works for me: