select covar_pop(g.avggrade, s.avghours) from (select stno, avg(grade) as avggrade from GRADES group by stno) g, (select stno, avg(no_hours) as avghours from SSTUDY group by stno) s where g.stno = s.stno; 143 This will return the answer:
select covar_pop(g.avggrade, s.avghours) from (select stno, avg(grade) as avggrade from GRADES group by stno) g, (select stno, avg(no_hours) as avghours from SSTUDY group by stno) s where g.stno = s.stno;143This will return the answer: