Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/lsp4you/public_html/connect.php on line 2 LSP4YOU - Learner's Support Publications

SELECT USING COUNT() with GROUP BY

Q:14
Display the total number of students in each batch in the order of total number.


SQL>  SELECT BRANCH, COUNT(*) "Number" FROM STUDENT GROUP BY BRANCH ORDER BY 2;

BRANCH                   Number
-------------------- ----------
COMMERCE                      1
HUMANITIES                    2
SCIENCE                       3