You are viewing a single comment's thread. Return to all comments →
SELECT CONCAT(NAME, '(', LEFT (OCCUPATION, 1), ')') as col1 FROM OCCUPATIONS ORDER BY NAME; SELECT CONCAT('There are a total of ', COUNT(OCCUPATION), ' ', lower(OCCUPATION), 's.') as col1 FROM OCCUPATIONS GROUP BY OCCUPATION ORDER BY COUNT(OCCUPATION), OCCUPATION;
Why this is not working with 2nd query with concat ?
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 →
Why this is not working with 2nd query with concat ?