Max

suggest change

Find the maximum value of column:

select max(age) from employee;

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

Syntax:

SELECT MAX(column_name) FROM table_name;

Feedback about page:

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


Functions Aggregate:
* SUM
* AVG
* Count
* Max
* Min

Table Of Contents