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

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

SQL面試題-查詢課程

2019-11-09 21:11:17
字體:
來源:轉載
供稿:網友

題目: 成績表(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)
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 平武县| 杨浦区| 丰都县| 卓资县| 赞皇县| 呼玛县| 固原市| 新乡县| 黄平县| 湟源县| 昌平区| 望江县| 安岳县| 兴义市| 西林县| 利辛县| 灯塔市| 南投县| 郁南县| 紫云| 建始县| 达州市| 明水县| 拜泉县| 苍梧县| 台中县| 广东省| 稻城县| 饶平县| 凤冈县| 镇巴县| 定州市| 沛县| 阜新| 固原市| 西藏| 肥城市| 淄博市| 蓝山县| 富源县| 新乡市|