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
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