119
MariaDB MIN() Function
MariaDB MIN() functiuon is used to retrieve the minimum value of the expression.
Syntax:
Example:
MIN() Function with single expression
We have a table “Student”, having the following data:
Let’s retrieve lowest salary by using MIN () function.
Output:
MIN() Function with ORDER BY Clause
Output:
Next TopicMariaDB Max function