adplus-dvertising
frame-decoration

Question

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;

a.

The having clause checks whether the query result is true or not

b.

The having clause does not check for any condition

c.

The having clause allows only those tuples that have average balance 10000

d.

None of the mentioned

Posted under SQL DBMS

Answer: (c).The having clause allows only those tuples that have average balance 10000

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Choose the correct option regarding the query:

Similar Questions

Discover Related MCQs

Q. The _____ aggregation operation adds up all the values of the attribute

Q. State true or false: Any attribute which is present in the having clause without being aggregated must not be present in the group by clause.

Q. State true or false: We can rename the resulting attribute after the aggregation function has been applied

Q. Which keyword is used to rename the resulting attribute after the application of the aggregation function?

Q. What values does the count(*) function ignore?

Q. What is a subquery?

Q. If a set is a collection of values given by the select clause, The ______ connective tests for set membership

Q. State true or false : Nested Subqueries cannot be used for comparing two different sets

Q. The ________ comparison checker is used to check “each and every” condition

Q. The ______ construct returns true if a given tuple is present in the subquery.

Q. What is a correlated sub-query?

Q. The _________ construct returns true if the argument in the sub-query is void of duplicates

Q. State true or false: We can use Subqueries inside the from clause

Q. SQL subqueries that can occur wherever a value is permitted provided the subquery gives only one tuple with a single attribute are called _________

Q. Insert the appropriate key word in the blank in the query ( A is a relation)
delete ______ A

where P < 5;

Q. How many relations can a delete command operate on?

Q. What is the format of entering date into a database while inserting data into it?

Q. To change a value in a tuple without changing all the values in the tuple, we use the _____ statement

Q. State true or false: We cannot write a where clause under an update command

Q. Scalar Subqueries can be used in the SQL update statement when they are used under the ____ clause