Informatics Practices

Which of the following is not a valid aggregate function in MYSQL ?

  1. COUNT()
  2. SUM()
  3. MAX()
  4. LEN()

SQL Queries

3 Likes

Answer

LEN()

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

Answered By

1 Like


Related Questions