程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> SQL編程:統計n次考試的成績

SQL編程:統計n次考試的成績

編輯:關於SqlServer

       最近幫學校做一成績錄入的系統,其中有以下任務要求

      需求說明:

      有三張表:

      1、根據課程id可以從web_inputCj_cjb表中找到該課程對應的所有學生

      2、根據課程id可以從web_inputCj_xsksb中找到該課程所對應的n次考試,這n次考試分別有ksid(考試id),成績比例等信息

      3、根據考試id可以從web_inputCj_xscjb中找到每次考試的所有學生的信息,(xh(學號),cj(該次考試成績))

      任務:

      根據這些信息,按照各次考試的成績比例(0~100)將該生的總成績統計出來,並更新到web_inputCj_cj的cj字段中

      解決:

      1、首先需要將學生的綜合成績統計出來,這也是最關鍵的

    ?

    1 2 3 4 5 6 7 8 9 select zzcj.cj,zzcj.xh from (select xh from web_inputCj_cjb where kcId=@kcid)xsxx left join (select xh,round(sum(cjbl*0.01*isnull(cj,0)),0)cj from web_inputCj_xscjb xscjb left join   (select ksid,cjbl from web_inputCj_xsksb where kcId=@kcid)ksxx    on xscjb.ksid=ksxx.ksid group by xh )zzcj on zzcj.xh=xsxx.xh

      2、有了這張”最終考試成績表“,下面就是將其中所有的數據更新到目標表中了,這裡我用游標來實現,完整的sql語句如下:

    ?

    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 USE [new_wzjw] GO /****** Object:  StoredProcedure [dbo].[成績管理_過程化成績錄入_統計最終成績]    Script Date: 2014/4/1 19:22:01 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER ON GO ALTER proc [dbo].[成績管理_過程化成績錄入_統計最終成績] @kcid jxrw_code as begin   declare c1 cursor for   select zzcj.cj,zzcj.xh from (select xh from web_inputCj_cjb where kcId=@kcid)xsxx left join (select xh,round(sum(cjbl*0.01*isnull(cj,0)),0)cj from web_inputCj_xscjb xscjb left join   (select ksid,cjbl from web_inputCj_xsksb where kcId=@kcid)ksxx    on xscjb.ksid=ksxx.ksid group by xh )zzcj on zzcj.xh=xsxx.xh   declare @cj float declare @xh varchar(12)   open c1   fetch c1 into @cj,@xh while @@FETCH_STATUS = 0   begin update web_inputCj_cjb set cj=@cj  where xh=@xh and kcId=@kcId   fetch c1 into @cj,@xh end   end
    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved