STDDEV returns standard deviation of x, a number. Oracle calculates the standard deviation as the square root of the variance defined for the VARIANCE group function.Syntax: STDDEV([DISTINCT|ALL] x)
SQL Example:SELECT STDDEV(sal) "Deviation" 
FROM emp  Deviation
----------
1182.50322