You are viewing a single comment's thread. Return to all comments →
Pretty similar, my approach: select (name||'('||UPPER(substr(occupation,1,1))||')') from occupations order by name;
select (name||'('||UPPER(substr(occupation,1,1))||')') from occupations order by name;
select ('There are total '||count(name)||' '||lower(occupation)||'s.') from occupations group by occupation order by count(name), occupation;
Seems like cookies are disabled on this browser, please enable them to open this website
The PADS
You are viewing a single comment's thread. Return to all comments →
Pretty similar, my approach:
select (name||'('||UPPER(substr(occupation,1,1))||')') from occupations order by name;
select ('There are total '||count(name)||' '||lower(occupation)||'s.') from occupations group by occupation order by count(name), occupation;