/ Published in: SQL
A few examples of the CORR function.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
SELECT CORR(fees_paid, fees_required) AS corr_test FROM student; SELECT first_name, last_name, CORR(fees_paid, fees_required) OVER (ORDER BY first_name) AS corr_value FROM student;
URL: http://www.databasestar.com/oracle-corr