sql語句求每門課程的成績都在80分以上的學生的學號

2021-04-23 23:46:25 字數 655 閱讀 2817

1樓:匿名使用者

select sno from student where sno not in ( select sno from sc where grade<80 )

select distinct sno from sc where cno in (select cno from course where cteacher='程軍

來')就是

自這樣,

bai應du該沒zhi

錯!dao

2樓:

select sno from sc where grade > 80

select sno from student where sno in

(select sno from sc where cno = (select cno from course where cname = '程軍'))

查詢選修課程超過2門且成績都在80分以上的學生的學號、姓名、課程名和成績資訊。 15

sql查詢2門以上課程成績不低於80分的學生的學號、以及不低於85分的課程的門數。

查詢至少有三門課程成績在80分以上的學生的學號、姓名。 (提示:使用子查詢)

sql,查詢每門課程最高分的學生的學號,課程號,成績。再一張表裡

1 首先在開啟的sql中,檢視market資料庫中 商來自哪些州的哪些城市,如下圖所示。2 接著檢視market資料庫 商的完整資訊,如下圖所示。3 然後檢視market資料庫中,商來自哪些國家 去除重複國家 4 然後在stu資料庫中對學生情況表進行學號 姓名 性別 專業和入學成績的查詢,結果按入學...

求做一道SQL語句題,問一道SQL語句的題目,請各位幫幫忙。

2.update user set password xyw97 where username admin 3.delete from user where usernmae temp 4.insert into user username,password values newuser newpw...

用SQL語句寫2門或2門以上可不及格的學生資訊

假設有課程1 a 課程2 b 課程3 c select from 成績表 where a 60andb 60 or a 60andc 60 or b 60andc 60 查詢存在兩門 包含兩門 以上課程不及格的學生姓名 剛正好在做這題,我這邊是ok的。你自己可以去試試。因為是測試,所以起名有些隨意 ...