• + 0 comments

    select CONCAT(name,'(',substring(Occupation,1,1),')') AS Name_and_Occupation 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), lower(occupation);