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 with COUNT()

Q:5
Display the number of students in each batch.


SQL> SELECT BRANCH, COUNT(*) FROM STUDENT GROUP BY BRANCH;

BRANCH                 COUNT(*)
-------------------- ----------
COMMERCE                      2
HUMANITIES                    2
SCIENCE                       2