MIN
The MIN() Function is used to returns the minimum value.
Syntax :-
Example : Let's see how to used MIN function in table.
SELECT MIN (column_name)
FROM table_name
WHERE conditions;
Query :
Output :
SELECT MIN (Salary)
FROM customers;
Now, you can see MIN() Function calculated minimum salary in the salary column .
0 Comments