国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

SQL面試題-查詢課程

2019-11-10 19:23:59
字體:
來源:轉載
供稿:網友

題目: 成績表(Grade),包含字段:GradeID(Int,自增), SNO(int, 學號), CNO(int, 課程號), Score(float,分數) 查詢每門課程的平均(最高/最低)分及課程號; 查詢每門課程第1名的學生的學號; 查詢每門課程中超過平均分的所有學生的學號等等; 課程數據庫表 解答: 創建表:

Create Table Grade( GradeID int not null identity(0, 1) constraint PK_Grade PRimary key, SNO int, CNO int, Score float)Insert into dbo.Grade(SNO, CNO, Score)values(22,23,24),(32,33,44),(52,53,54),(22,23,25),(22,23,26),(22,23,27),(22,23,28),(22,23,29),(22,23,30);

1.查詢每門課程的平均(最高/最低)分及課程號:

Select AVG(Score) as AvgScore, CNO from Grade group by CNOSelect MAX(Score) as MaxScore, CNO From grade group by cno

2.查詢每門課程第1名的學生的學號:

select * from Grade a where not exists( select 1 from grade b where b.cno = a.cno and (b.score < a.score or (b.score = a.score and gradeid < a.gradeid)))

3.查詢每門課程中超過平均分的所有學生的學號:

select * from grade a where not exists( select * from(select AVG(score) avgScore, cno from grade group by cno) b where a.cno = b.cno and a.score < b.avgScore)
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 寻甸| 凭祥市| 区。| 修水县| 舟山市| 旬阳县| 柳州市| 介休市| 崇左市| 凌源市| 汨罗市| 武清区| 特克斯县| 涪陵区| 库尔勒市| 铁力市| 东乌珠穆沁旗| 宁国市| 和顺县| 于田县| 清涧县| 来安县| 河北区| 华安县| 尉氏县| 榆林市| 华阴市| 开原市| 洮南市| 泰来县| 信宜市| 苍溪县| 长乐市| 临洮县| 响水县| 虎林市| 镇平县| 金阳县| 共和县| 怀仁县| 鹤岗市|