• + 0 comments

    Select name || '('|| substr(occupation,1,1) || ')' as result from occupations;

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

    /*