oracle中的樣本差怎么計算-----樣本標准差和全數據標准差兩種


select
       STDDEV(b.sectionscore) s,---------------這里是樣本標准差不是全部數據的
STDDEV_POP(b.sectionscore) s,---------------這個是所有數據的標准差
  from subjectregister a
  left join subjectsectionscore b
    on a.sid = b.subjectregistersid
  left join subjectsection c
    on b.sectionsid = c.sid
 where a.score != '0'
   and a.score IS NOT null
   and a.subjectcode != 'F'
   and a.subjectcode != 'S'
   AND  C.NAME = '聽力'


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM