• + 0 comments

    select concat(name, '(', left(Occupation, 1), ')') from Occupations order by name;

    select concat('There are a total of ', count(*), ' ', lower(occupation), 's.') from occupations group by occupation order by count(occupation) asc, lower(occupation) asc;