• + 0 comments

    select concat(name,'(',substring(occupation,1,1),')') from occupations order by name asc; SELECT concat('There are a total of ',COUNT(*),' ',lower(occupation), 's.') as total FROM occupations GROUP BY occupation order by total asc