|
|
FULL A - Z Oracle Function Library (formerly named "Morgan's Library")
Term: REGR_COUNT
Definition: REGR_COUNT(x,y) In the syntax, 'x' is referred to as the dependent variable and 'y' is referred to as the independent variable of the Regression Line. Example Usage: The SQL query below uses REGR_COUNT to count the NOT NULL pairs of SAL and DEPTNO in the EMPLOYEE table. sql> SELECT deptno, sal, regr_count(sal, deptno) OVER (partition by deptno) "REGR_COUNT" Related Links: Related Code Snippets:
|
Home | Search | Code Library | Sponsors | Privacy | Terms of Use | Contact Us | © 2003 - 2024 psoug.org |