You are viewing a single comment's thread. Return to all comments →
EASIEST Query:
SELECT CONCAT(NAME, '(', SUBSTR(OCCUPATION, 1, 1), ')') AS RESULT FROM OCCUPATIONS ORDER BY NAME; SELECT CONCAT('There are a total of ', COUNT(*), ' ', LOWER(OCCUPATION), 's.') AS RESULT FROM OCCUPATIONS GROUP BY OCCUPATION ORDER BY COUNT(OCCUPATION), 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 →
EASIEST Query: