How to calculate the sample difference in oracle ----- sample standard deviation and full data standard deviation

select
       STDDEV(b.sectionscore) s,--------------- here is the sample standard deviation not all data
STDDEV_POP(b.sectionscore) s,---------------This is the standard deviation of all data
  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 = '听力'

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=325346615&siteId=291194637