Oracle CORR Function


/ Published in: SQL
Save to your folder(s)

A few examples of the CORR function.


Copy this code and paste it in your HTML
  1. SELECT CORR(fees_paid, fees_required) AS corr_test
  2. FROM student;
  3.  
  4. SELECT first_name, last_name,
  5. CORR(fees_paid, fees_required) OVER (ORDER BY first_name) AS corr_value
  6. FROM student;

URL: http://www.databasestar.com/oracle-corr

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.