KnowledgeBoat Logo

Informatics Practices

Which of the following are correct aggregate functions in SQL ?

  1. AVERAGE()
  2. MAX()
  3. COUNT()
  4. TOTAL()

SQL Queries

2 Likes

Answer

MAX(), COUNT()

Reason — Aggregate functions in SQL include AVG(), COUNT(), MAX(), MIN(), and SUM().

Answered By

2 Likes


Related Questions