Exemples AVG

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

SELECT.