Untitled
unknown
plain_text
4 years ago
255 B
9
Indexable
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), Occupation asc;Editor is loading...