You are viewing a single comment's thread. Return to all comments →
SELECT CONCAT(NAME,'(',LEFT(OCCUPATION, 1),')') FROM OCCUPATIONS order by name;
SELECT CONCAT('There are a total of ',COUNT(OCCUPATION)," ",lower(OCCUPATION), 's.') FROM OCCUPATIONS GROUP BY OCCUPATION order by count(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 →
SELECT CONCAT(NAME,'(',LEFT(OCCUPATION, 1),')') FROM OCCUPATIONS order by name;
SELECT CONCAT('There are a total of ',COUNT(OCCUPATION)," ",lower(OCCUPATION), 's.') FROM OCCUPATIONS GROUP BY OCCUPATION order by count(occupation);