sql_彙總課堂參與資訊表到課堂評分表

wisdomone1發表於2010-07-16
因為參與人員有可能評價或者不評價,所有
 
 
select
a.classid,count(b.appraise),
count(distinct a.userid),
ceil(sum(b.appraise)/count(distinct b.userid))
from  o_classpartyinfo a,o_classpartyinfo b
where a.logid=b.logid and a.classid=b.classid 
            and b.appraise is not  null
group by a.classid
 
附上目標彙總表的列:
 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/9240380/viewspace-668193/,如需轉載,請註明出處,否則將追究法律責任。

相關文章