• + 0 comments

    -> select Concat(Name,'(',Substring(occupation,1,1),')') as N from occupations order by name;

    -> select 'There are a total of', + count(occupation), lower(concat(occupation,'s.')) from occupations group by occupation order by count(occupation), occupation ;