MIN


The  MIN() Function is used to returns the minimum value.

Syntax :-

SELECT  MIN (column_name)

FROM table_name

WHERE conditions;

Example : Let's see how to used MIN function in table.

Query :

SELECT  MIN (Salary)

FROM customers;

Output :

Now, you can see MIN() Function calculated minimum salary in the salary column .