SQL Server期末考試試題

2022-01-13 02:06:00 字數 2135 閱讀 4944

1樓:匿名使用者

3、查詢出課程號為『002』,分數最高的學生學號

三、查詢設計

1、select 學號,姓名 from 學生

where 班級 = '軟體041'

2、select * from 課程

where 課程名稱 like '%語言%'

3、select d.學號,d.姓名,d.班級

from (

select top 5 學號

from 選課 a

left join 課程 b

on a.課程號 = b.課程號

where b.課程名稱 = 'c語言'

order by a.成績 desc

) cleft join 學生 d

on c.學號 = d.學號

4、select 班級,count(班級)

from 學生

group by 班級

5、declare @zhangsanchengji float

select @zhangsanchengji = a.成績

from 選課 a

left join 課程 b

on a.課程號 = b.課程號

left join 學生 c

on  a.學號 = c.學號

where b.課程名稱 = '計算機應用基礎'

and a.姓名 = '張三'

select d.學號,d.姓名

from (

select a.學號,a.成績

from 選課 a

left join 課程 b

on a.課程號 = b.課程號

where b.課程名稱 = '計算機應用基礎'

) cleft join 學生 d

on c.學號 = d.學號

where 成績 > @zhangsanchengji

五、操作題,這裡自己查相關的操作吧,不好描述,sqlserver軟體操作起來還是挺方便的。

3、abreak:是跳出本次迴圈,也就是當@n = 1,迴圈終止並跳出begin-end執行外部的**,此時@n = 1。

continue:重新開始迴圈,但是continue後的**不執行的,這裡直到@n = 0時。

return:過程中無條件退出,後續的所有**都不執行,所以不會有輸出。

2樓:量產bon太君

3.查詢002號課程成績最高的學生的學號。

三、1.select 學號,姓名 from 學生 where 班級='軟體041' and 性別='男'

2.select * from 課程 where 課程名稱 like '%語言%'

3.select 學號,姓名,班級 from 學生 where 學號 in (select top 5 學號 from 選課 where 課程號 in (select 課程號 from 課程 where 課程名='c語言') order by 成績 desc)

或者select top 5 學號,姓名,班級 from 學生 inner join 選課 on 學生.學號=選課.學號 inner join 課程 on 選課.

課程號=課程.課程號 and 課程名='c語言' order by 成績 desc

4.select 班級,count(*) from 學生 group by 班級

5. select 學號,姓名 from 學生 where 學號 in (select 學號 from 選課 where 課程號 in (select 課程號 from 課程 where 課程名='計算機應用基礎') and 成績》(select top 1 成績 from 選課 where 學號 in (select 學號 from 學生 where 姓名='張三') and 課程號 in (select 課程號 from 課程 where 課程名='計算機應用基礎'))

五、這個你還是實際操作看看吧。

3樓:匿名使用者

3.'002'課程中 成績最好的學生 學號

三.1.select 學號,姓名 from 學生 where 班級 = '軟體041' and 性別 = '男生'

下班了 等回來再幫你 !

求sql高手幫忙做下期末上機考試題! 60

初二上學期期末考試試題初二上學期期末數學試題

呵呵給個 你吧 很好的 八年級上 地理期末總複習提綱 第一章 遼闊的疆域 1 從東西半球看,她位於東半球,從南北半球看,她位於北半球。2 從大洲大洋位置看,她位於亞洲東部太平洋的西岸。3 從緯度位置看,大部分位於屬於中緯度地區,屬於北溫帶,南部少部分位於熱帶,沒有寒帶。4 我國陸地領土面積約960萬...

數學初二期末考試題

2010年八年級下數學期末檢測試題1 一 選擇題 簡潔的結果,表達的是你敏銳的思維,需要的是細心!每小題3分,共30分 1 若使分式 的值為0,則 的取值為 a 1或 b 或1 c d 或 2 反比例函式 與正比例函式 在同一座標系中的圖象不可能是 a b c d 3 體育課上,八年級 1 班兩個組...

幫我做幾道VFP的題(期末考試題)

1use a1 index to 學號 tag xh use b1 index to 學號 tag xh clear all use a1 in 1 order xh use b1 in 2 order xh set rela to xh into b1?a1.學號,a1.姓名,a1.性別,b1.指...