KnowledgeBoat Logo
|

Informatics Practices

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

  1. MIN()
  2. MINIMUM()
  3. SMALL()
  4. SMALLEST()

SQL Queries

2 Likes

Answer

MIN()

Reason — The MIN() is an aggregate function in MySQL that returns the minimum value from a set of values.

Answered By

1 Like


Related Questions