Informatics Practices

Which of the following functions is used to find the largest value from the given data in MySQL?

  1. MAX()
  2. MAXIMUM()
  3. LARGEST()
  4. BIG()

SQL Queries

2 Likes

Answer

MAX()

Reason — The MAX() function is used to find the maximum value of a particular column in a table.

Answered By

3 Likes


Related Questions