• + 0 comments

    SELECT Name || '' || '('|| '' || SUBSTR(Occupation,1,1) || '' || ')' FROM OCCUPATIONS order by name asc;

    select 'There are a total of' || ' ' || count(Occupation) || ' ' || lower(Occupation) || '' || 's' from OCCUPATIONS group by occupation order by count(occupation),occupation asc;