Question
SELECT d.name, COUNT (emp_id) emp_no
FROM department d INNER JOIN Employee e
ON d.dept_id=e.emp_id
GROUP BY d.name
HAVING COUNT (emp_id)>2
a.
Filter out all rows whose total emp_id below 2
b.
Selecting those rows whose total emp_id>2
c.
Filter out all rows whose total emp_id below 2 & Selecting those rows whose total emp_id>2
d.
None of the mentioned
Posted under MySQL Database
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. What is the significance of the statement “HAVING COUNT (emp_id)>2” in the following MySQL statement?
Similar Questions
Discover Related MCQs
Q. Which clause is used with an “aggregate functions”?
View solution
Q. Which of the following belongs to an “aggregate function”?
View solution
Q. Which among the following belongs to an “aggregate function”?
View solution
Q. “COUNT” keyword belongs to which categories in Mysql?
View solution
Q. What is the meaning of “HAVING” clause in Mysql?
View solution
Q. Which clause is similar to “HAVING” clause in Mysql?
View solution
Q. What is the meaning of “GROUP BY” clause in Mysql?
View solution
Q. What is the meaning of the “WHERE” clause in Mysql?
View solution
Q. What will be the output of the following MySQL statement?
“NOT (Null)”
View solution
Q. What will be the output of the following MySQL statement?
“Null OR Null”
View solution
Q. What will be the output of the following MySQL statement?
“false OR Null”
View solution
Q. What will be the output of the following MySQL statement?
“true OR Null”
View solution
Q. What will be the output of the following MySQL statement?
“Null AND Null”?
View solution
Q. What will be the output of the following MySQL statement ?
“false AND Null”?
View solution
Q. What will be the output of the following MySQL statement?
“true AND Null”
View solution
Q. What is the use of “VIEW” in Mysql?
View solution
Q. Which command is used to create “Temporary tables” in MySQL?
View solution
Q. Which of the following statements is/are correct with respect to “VIEW”?
View solution
Q. “SELECT” clause cannot be used without which clause in Mysql?
View solution
Q. What is the meaning of “Temporary Tables” in Mysql?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond MySQL Database? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!