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:13
Display the number of depositors in each branch who have more than Rs. 50,000/- as deposit.


SQL>  SELECT BRANCH, COUNT(*) FROM DEPOSIT WHERE AMOUNT > 50000 GROUP BY BRANCH;

BRANCH                 COUNT(*)
-------------------- ----------
CALICUT                       2