We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- SQL
- Advanced Select
- The PADS
- Discussions
The PADS
The PADS
Sort by
recency
|
5327 Discussions
|
Please Login in order to post a comment
SELECT CONCAT(name,'(', SUBSTRING(occupation, 1, 1), ')') FROM occupations order by name asc; select "There are a total of ", count(occupation), concat(occupation,'s.') from occupations group by occupation order by count(occupation) asc;
Select concat(name,'(',upper(left(Occupation,1)),')') from OCCUPATIONS order by name ;
select Concat('There are a total of ',count(Occupation),' ',lower(Occupation),'s','.') from OCCUPATIONS group by Occupation order by 1;
SELECT CONCAT(Name,'(',LEFT(occupation,1),')') FROM OCCUPATIONS ORDER BY Name ASC;
SELECT CONCAT("There are a total of ",COUNT(occupation),' ',LOWER(occupation),'s.') from occupations GROUP BY Occupation ORDER BY COUNT(occupation) ASC;
Select concat(name,'(',upper(left(Occupation,1)),')') from OCCUPATIONS order by 1 ;
select Concat('There are a total of ',count(Occupation),' ',lower(Occupation),'s','.') from OCCUPATIONS group by Occupation order by 1;
SQL server: Select concat(name,'(',left(occupation,1),')') from occupations order by name asc; select concat('There are a total of ',count(occupation), ' ',Lower(occupation), 's.') from occupations group by occupation order by count(occupation),occupation asc