|
|
FULL A - Z Oracle Function Library (formerly named "Morgan's Library")
Term: STDDEV_POP
Definition: STDDEV_POP( [ DISTINCT | ALL ] expression ) Analytic Function: STDDEV_POP( [ DISTINCT | ALL ] expression ) [ OVER ( analytical_clause ) ] Example Usage: The SQL statement below returns the population standard deviation of the Quantity field from ORDERS table: SELECT STDDEV_POP(QTY) The SQL statement below returns the cumulative population standard deviation of the quantity over the orders against each date. SELECT DT,STDDEV_POP(QTY) OVER (ORDER BY dt) Related Links: Related Code Snippets:
|
Home | Search | Code Library | Sponsors | Privacy | Terms of Use | Contact Us | © 2003 - 2025 psoug.org |