Min

suggest change

Find the smallest value of column:

select min(age) from employee;

Above example will return smallest value for column age of employee table.

Syntax:

SELECT MIN(column_name) FROM table_name;

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:


Functions Aggregate:
*Min

Table Of Contents