Multiple choice technology programming languages

Which of following is not an aggregate function in SQL SERVER

  1. MIN

  2. MAX

  3. AVG

  4. COUNT

  5. SUM

  6. GROUP

Reveal answer Fill a bubble to check yourself
F Correct answer
Explanation

SQL Server aggregate functions include COUNT, SUM, AVG, MIN, and MAX - they perform calculations on sets of values. GROUP is not an aggregate function; it's used with GROUP BY to arrange identical data into groups, but GROUP BY itself is a clause, not an aggregation function.