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 oracle中的样本差怎么计算-----样本标准差和全数据标准差两种C.NAME = '听力'

相关文章:

  • 2022-01-07
  • 2021-12-05
  • 2022-12-23
  • 2022-12-23
  • 2021-12-01
  • 2022-12-23
  • 2021-11-28
  • 2022-12-23
猜你喜欢
  • 2021-05-08
  • 2021-11-28
  • 2022-01-11
  • 2021-07-25
  • 2022-12-23
  • 2022-01-02
  • 2021-12-05
相关资源
相似解决方案