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

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

SQL面試題-查詢課程

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

題目: 成績表(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)
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 淮南市| 叶城县| 龙江县| 竹山县| 江西省| 全南县| 宜阳县| 万年县| 临西县| 河东区| 衡东县| 宜州市| 百色市| 紫金县| 梅州市| 随州市| 兰溪市| 青河县| 怀柔区| 德江县| 唐河县| 江阴市| 洛浦县| 乌拉特中旗| 赣榆县| 香格里拉县| 湖州市| 定南县| 钟祥市| 双牌县| 大荔县| 商洛市| 大城县| 包头市| 大城县| 台南市| 吉安县| 渝中区| 阿拉善左旗| 北川| 海城市|