Which of the following set of functions is a valid set of aggregate functions…

2023

Which of the following set of functions is a valid set of aggregate functions in MySQL?

Answer: C. COUNT(), MAX(), SUM()In MySQL, aggregate functions are used to perform calculations on a set of values and return a single value. Valid aggregate functions include: COUNT() →…

  1. A.

    AVG(), ROUND(), COUNT()

  2. B.

    MIN(), UPPER(), AVG()

  3. C.

    COUNT(), MAX(), SUM()

  4. D.

    DATE(), COUNT(), LTRIM()

Attempted by 2761 students.

Show answer & explanation

Correct answer: C

In MySQL, aggregate functions are used to perform calculations on a set of values and return a single value. Valid aggregate functions include: COUNT() → counts number of rows

MAX() → returns maximum value

SUM() → returns total sum

Other options include non-aggregate functions like UPPER(), ROUND(), DATE(), LTRIM(), so they are not correct.

A video solution is available for this question — log in and enroll to watch it.

Explore the full course: Niacl Ao It Specialist

Loading lesson…