SQL 最高

示例

查找列的最大值:

select max(age) from employee;

上面的例子会为列返回值最大age的employee表。

语法:

SELECT MAX(column_name) FROM table_name;