• + 0 comments

    Select CONCAT(Name, '(',LEFT(Occupation,1),')') from OCCUPATIONS order by CONCAT(Name,'(',LEFT(Occupation,1),')');

    SELECT CONCAT('There are a total of',' ',COUNT(Occupation),' ', LOWER(Occupation),'s.') FROM OCCUPATIONS group by Occupation order by COUNT(Occupation)