學生各門課程成績統計SQL語句大全(面試題)

来源:http://www.cnblogs.com/lsgcoder101/archive/2016/10/29/6011059.html
-Advertisement-
Play Games

創建表 插入數據 查詢結果顯示,如下截圖: 問題: 1.計算每個人的總成績併排名(要求顯示欄位:姓名,總成績) select name,SUM(score) as allscore from dbo.stuscore group by name order by allscore; View Cod ...


創建表

SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOSET ANSI_PADDING ONGOCREATE TABLE [dbo].[stuscore]
( [name] [varchar](50)   COLLATE Chinese_PRC_CI_AS   NULL,    
[subject] [varchar](50)   COLLATE Chinese_PRC_CI_AS   NULL,    
[score] [int]   NULL,   
[stuid] [int]    NULL) 
ON [PRIMARY] 
GO
SET ANSI_PADDING OFF

插入數據

insert into dbo.stuscore values ('張三','數學',89,1);
insert into dbo.stuscore values ('張三','語文',80,1);
insert into dbo.stuscore values ('張三','英語',70,1);
insert into dbo.stuscore values ('李四','數學',90,2);
insert into dbo.stuscore values ('李四','語文',70,2);
insert into dbo.stuscore values ('李四','英語',80,2);

查詢結果顯示,如下截圖:

問題:   1.計算每個人的總成績併排名(要求顯示欄位:姓名,總成績) 
select name,SUM(score) as allscore from dbo.stuscore
group by name 
order by allscore;
View Code

2.計算每個人的總成績併排名(要求顯示欄位: 學號,姓名,總成績) 

select stuid,name,SUM(score) as allscore from dbo.stuscore 
group by name,stuid 
order by allscore;
View Code 3.計算每個人單科的最高成績(要求顯示欄位: 學號,姓名,課程,最高成績)
select t1.stuid,t1.name,t1.subject,t1.score from stuscore t1,
(select stuid,max(score) as maxscore from stuscore group by stuid) t2 
where t1.stuid=t2.stuid and t1.score=t2.maxscore;
View Code 4.計算每個人的平均成績(要求顯示欄位: 學號,姓名,平均成績)
select stuid,name,AVG(score) avgscore from dbo.stuscore 
group by stuid,name;
View Code 5.列出各門課程成績最好的學生(要求顯示欄位: 學號,姓名,科目,成績) 
select t1.stuid,t1.name,t1.subject,t1.score from stuscore t1,(
select subject,MAX(score) as maxscore from stuscore group by subject)t2
where t1.subject = t2.subject and t1.score = t2.maxscore;
View Code 6.列出各門課程成績最好的兩位學生(要求顯示欄位: 學號,姓名,科目,成績) 
select  t1.* from stuscore t1 where t1.stuid in (
select top 2 stuid from stuscore where subject = t1.subject order by score desc)
order by t1.subject;
View Code 7.統計如下: 
學號 姓名 語文 數學 英語 總分 平均分
             
select stuid 學號,name 姓名,sum(case when subject='語文' then score else 0 end )as 語文,
sum(case when subject='數學' then score else 0 end )as 數學,
sum(case when subject='英語' then score else 0 end )as 英語,
SUM(score)總分,avg(score)平均分 from stuscore
group by stuid,name order by 總分;
View Code   8.列出各門課程的平均成績(要求顯示欄位:課程,平均成績)
select subject,AVG(score)平均成績 from stuscore 
group by subject;
View Code   9.列出數學成績的排名(要求顯示欄位:學號,姓名,成績,排名)
select stuid,name,score,
(select count(*) from stuscore t1 where subject ='數學' and t1.score > t2.score)+1 as 名次 from stuscore t2  
where subject='數學' order by score desc;
 --註釋:排序,比較大小,比較的次數+1 = 排名。
View Code   10.列出數學成績在2-3名的學生(要求顯示欄位:學號,姓名,科目,成績) 
select t3.* from (
select top 2  t2.* from (
select top 3 stuid,name,subject,score from stuscore where 
subject = '數學' order by score desc) t2 order by t2.score) t3
order by t3.score desc;
View Code
 select t3.*  from (
 select top 100 percent stuid,name,subject,score,
(select count(*) from stuscore t1 where subject ='數學' and t1.score > t2.score)+1 as 名次 from
 stuscore t2  where subject='數學' order by t2.score desc) t3 
 where t3.名次 between 2 and 3 order by t3.score desc;
View Code
 select t3.*  from (
 select stuid,name,subject,score,
(select count(*) from stuscore t1 where subject ='數學' and t1.score > t2.score)+1 as 名次 from
 stuscore t2  where subject='數學') t3 
 where t3.名次 between 2 and 3 order by t3.score desc;
View Code

後面兩個方法的不同之處可以參見:http://blog.csdn.net/wrm_nancy/article/details/17170115

11.求出李四的數學成績的排名 
declare @tmp table(pm int,name varchar(50),score int,stuid int)insert into @tmp 
select null,name,score,stuid from stuscore where subject='數學' 
order by score desc declare @id int set @id=0;
update @tmp set @id=@id+1,pm=@id select * from @tmp where name='李四'
View Code
select stuid,name,subject,score,(select count(*) from stuscore t1 where subject ='數學' and t1.score > t2.score)+1 as 名次
 from stuscore t2  where subject='數學' and name = '李四' order by score desc;
View Code 12.統計如下: 
課程 不及格(0-59)個 良(60-80)個 優(81-100)個
       
 select subject 科目,sum(case when score between 0 and 59 then 1 else 0 end) as 不及格,
 sum(case when score between 60 and 80 then 1 else 0 end) as 良,
 sum(case when score between 81 and 100 then 1 else 0 end) as 優秀 from stuscore
 group by subject;
View Code 13.統計如下:   數學: 張三(50分),李四(90分),王五(90分),趙六(76分)   
 declare @s nvarchar(1000)
 set @s=''
 select @s =@s+','+name+'('+convert(nvarchar(10),score)+'分)' from 
 stuscore where subject='數學'
 set @s=stuff(@s,1,1,' ')print '數學:'+@s
View Code

 

 
您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 前幾天將我的Xcode升到了8,但是在運行程式時,會列印很多沒有用的信息,如下圖: Xcode8運行程式時列印的亂碼 Xcode8運行程式時列印的亂碼 於是各種尋求答案,找到如下答案: Edit Scheme-> Run -> Arguments, 在Environment Variables裡邊添 ...
  • 本文是轉載的,轉載地址: "大白話解釋Strategy模式和State模式的區別" 先上圖: 本質上講,策略模式和狀態模式做得是同一件事:去耦合。怎麼去耦合?就是把乾什麼(語境類)和怎麼乾(策略介面)分開,互不依賴。打個比方,下麵是我一天的行程: 但問題來了,啪啪啪是個技術活,有著名的48式,今天到 ...
  • 如今,隨著信息技術的不斷發展,很多公司採用微信企業號來進行企業與員工之間的聯繫。其實微信企業號中右很多獨立的應用。 那麼如何可以將報表系統集成到微信中呢?這裡分享一下在微信企業號中創建獨立的報表應用,並且將微信賬號單點登錄到帆軟報表軟體FineReport的許可權對接。 ...
  • 現在大部分應用程式都把業務邏輯處理,數據調用等功能封裝成了服務的形式,應用程式只需要調用這些web服務就好了,在這裡就不贅述web服務的優點了。本文總結如何在android中調用Web服務,通過傳遞基類型和複雜類型對比調用.NET平臺發佈的WCF服務和WebService服務之間的區別。 0 寫在前 ...
  • 前言 學習ios這幾天來,總結下,函數的定義,調用。跟其他語言都有一定的區別; 幾個特別重要的就是對象的迭代的使用和判斷、取隨機數、動畫的實現及數組的深入研究等等 之前的總結地址 ios開發 學習積累20161024~20161026: http://www.cnblogs.com/jasonxu1 ...
  • 鏈接 ...
  • 前言 學習本系列內容需要具備一定 HTML 開發基礎,沒有基礎的朋友可以先轉至 "HTML快速入門(一)" 學習 本人接觸 React Native 時間並不是特別長,所以對其中的內容和性質瞭解可能會有所偏差,在學習中如果有錯會及時修改內容,也歡迎萬能的朋友們批評指出,謝謝 文章第一版出自簡書,如果 ...
  • 1.添加載入更多佈局 1_初始化和隱藏代碼在RefreshListView構造方法中調用 2_佈局文件refresh_listview_footer.xml 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android= ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...