找到列的最小值:
select min(age) from employee;
上面的示例将返回employee表列age的最小值。
语法:
SELECT MIN(column_name) FROM table_name;