Find the maximum value of column:
select max(age) from employee;
Above example will return largest value for column age of employee table.
age
employee
Syntax:
SELECT MAX(column_name) FROM table_name;