| [ Web Proxy ] |
| Viewing: https://riptutorial.com/sql/example/10999/max | [Back] [Original] |
[logo rip]
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;
| Web Proxy Viewer | New URL | Original Page |