Exemples STDDEV_POP

Example 1. En utilisant la fonction STDDEV_POP
SELECT
  dept_no,
  STDDEV_POP(salary)
FROM employee
GROUP BY dept_no