adplus-dvertising
frame-decoration

Question

What is the significance of the statement “GROUP BY d.name” in the following MySQL statement?
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

a.

Aggregation of the field “name” of both table

b.

Aggregation of the field “name” of table “department”

c.

Sorting of the field “name”

d.

None of the mentioned

Answer: (b).Aggregation of the field “name” of table “department”

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 “GROUP BY d.name” in the following MySQL statement?

Similar Questions

Discover Related MCQs

Q. Which clause is used with an “aggregate functions”?

Q. Which of the following belongs to an “aggregate function”?

Q. Which among the following belongs to an “aggregate function”?

Q. “COUNT” keyword belongs to which categories in Mysql?

Q. What is the meaning of “HAVING” clause in Mysql?

Q. Which clause is similar to “HAVING” clause in Mysql?

Q. What is the meaning of “GROUP BY” clause in Mysql?

Q. What is the meaning of the “WHERE” clause in Mysql?

Q. What will be the output of the following MySQL statement?

“NOT (Null)”

Q. What will be the output of the following MySQL statement?

“Null OR Null”

Q. What will be the output of the following MySQL statement?

“false OR Null”

Q. What will be the output of the following MySQL statement?

“true OR Null”

Q. What will be the output of the following MySQL statement?

“Null AND Null”?

Q. What will be the output of the following MySQL statement ?

“false AND Null”?

Q. What will be the output of the following MySQL statement?

“true AND Null”

Q. What is the use of “VIEW” in Mysql?

Q. Which command is used to create “Temporary tables” in MySQL?

Q. Which of the following statements is/are correct with respect to “VIEW”?

Q. “SELECT” clause cannot be used without which clause in Mysql?

Q. What is the meaning of “Temporary Tables” in Mysql?