VARIANCE

Posted by Sudheer Sharma 29 November 2009
What do you think of this post?
Awesome  Interesting  Useful 

VARIANCE

Returns the variance of an expression

VARIANCE([DISTINCT | ALL] <value>) OVER (<analytic_clause>)

conn oe/oe

SELECT last_name, salary,
VARIANCE(salary) OVER (ORDER BY hire_date) AS VARIANCE
FROM employees
WHERE department_id = 30;

What do you think of this post?
Awesome  Interesting  Useful 

Leave a Reply

*


Fatal error: Call to undefined function is_new_post() in /hermes/web06/b862/moo.godasudheer/wp-content/themes/MagHo/MagHo/page.php on line 20