Question:

Which of the following is not an aggregate function?

Show Hint

Aggregate functions in SQL include "SUM", "AVG", "MAX", "MIN", and "COUNT", which work on groups of rows to return a single value.
Updated On: Apr 24, 2025
  • max(col)
  • min(col)
  • round(n, d)
  • count(*)
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is C

Solution and Explanation

Aggregate functions in SQL are used to perform calculations on a set of values to return a single value. Functions like "max()", "min()", and "count()" are aggregate functions. However, "round(n, d)" is not an aggregate function. It is used to round a number to a specified number of decimal places.
Was this answer helpful?
0
0