• + 0 comments

    select concat(name,"(",left(occupation,1),")") from occupations order by name;

    select str from( select occupation,concat("There are a total of ", count(occupation)," ",lower(occupation),"s.")str from occupations group by 1 order by count(occupation),occupation)ab ;