Choose the correct option regarding the query:
SELECT branch_name, COUNT (DISTINCT customer_name)
FROM depositor, account
WHERE depositor.account_number = account.account_number
GROUP BY branch_id
HAVING avg(balance) = 10000;
- The having clause checks whether the query result is true or not
- The having clause does not check for any condition
- The having clause allows only those tuples that have average balance 10000
- None of the mentioned
(c).The having clause allows only those tuples that have average balance 10000
need an explanation for this answer? contact us directly to get an explanation for this answer