Question:

Which clause amongst the following can be used along with aggregate functions?

Show Hint

To perform aggregation on grouped data, always use GROUP BY along with SELECT to define which columns are used for aggregation.
Updated On: Apr 24, 2025
  • Select
  • Group by
  • Where
  • Both Select and Group by
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is D

Solution and Explanation

Aggregate functions such as COUNT, SUM, AVG, etc., can be used with the SELECT and GROUP BY clauses in SQL. GROUP BY groups rows that have the same values in specified columns into summary rows, which is essential when using aggregate functions.
Was this answer helpful?
0
0

Questions Asked in CUET exam

View More Questions