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;