Exemples MIN

Example 1. En utilisant la fonction MIN
SELECT
  dept_no,
  MIN(salary)
FROM employee
GROUP BY dept_no
Voir aussi :

SELECT, max().