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

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

SQL面試題-查詢課程

2019-11-10 17:02:14
字體:
來源:轉載
供稿:網友

題目: 成績表(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)
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 伊宁市| 来宾市| 沾化县| 禄丰县| 望都县| 浦江县| 东明县| 抚顺市| 永泰县| 清镇市| 饶河县| 昭觉县| 渑池县| 仪征市| 广丰县| 宿松县| 龙海市| 余江县| 卓资县| 东乌珠穆沁旗| 黔西县| 罗江县| 南召县| 长春市| 斗六市| 崇义县| 洱源县| 沙河市| 舟山市| 永康市| 万年县| 高安市| 东港市| 青龙| 米脂县| 谢通门县| 榆中县| 沈阳市| 中方县| 岑溪市| 柳林县|