• + 0 comments

    Hope this solution helps you. Please Like if it helps

    SELECT CONCAT(Name,'(',LEFT(Occupation,1),')') FROM OCCUPATIONS ORDER BY Name ASC;

    SELECT CONCAT('There are a total of ',COUNT(Occupation),' ', LOWER(Occupation),'s.') FROM OCCUPATIONS GROUP BY Occupation ORDER BY COUNT(Occupation) ASC, Occupation;