sql 查詢所有學生的學號 姓名 入學成績 選課門數和平均分

2021-03-26 12:53:11 字數 2392 閱讀 1700

1樓:

你select * from 表的時候,from兩個表。

後邊再where 表1.id = 表2.id

暈了,我說的id也就是主外來鍵關係的列。也就是你說的學號

2樓:匿名使用者

現在的學生啊 照著書一點點做比打這些字容易多了

sql語句的一道題 三個基本表:學生表(student)、課程表(course)、學生選課表(sc)

3樓:匿名使用者

select * from course

select sname,sage from student where sdept = '計算機系'

select * from sc where 70 <= grade and grade =>80

select sname,sage from student where sdept = '計算機系' and s***='男'

。。。。

4樓:被減速的飛機

自己看手冊把,都很簡單的,題太多,不好回答,,

5樓:匿名使用者

老師留的作業嗎?為你好,自己做吧。

查詢學生的學號,姓名,平均成績,要求只顯示平均分在80 分以上的學生,按成績從高到低排列

sql:查詢每門課程的課程名、選課學生姓名及其學號,選課人數

6樓:匿名使用者

我的學生資料庫跟你的差不多,我就用我的這些表給你做了個

select c.**o,s.sname,s.sno,選課人數 from course c

left join sc on c.**o=sc.**o

left join student s on s.sno=sc.sno

left join (select c.**o, count(s.sno) 選課人數 from

course c left join sc on c.**o=sc.**o

left join student s on s.sno=sc.sno

group by c.**o) as t on t.**o=c.**o

7樓:

你連關係都沒給,怎麼查。。。

請幫忙寫出下列sql語句的步驟: 1.查詢成績表的所有成績 2.查詢學生的學號,姓名和年齡 (接著在下面)

8樓:楓啦啦

你表的字段和表的關係都沒給....

只能認為表裡面有所有的字段了...

1 select * from 成績表

2 select 學號,姓名,年齡 from 學生資訊表

3 select 學號,姓名,課程名,成績 from 選課表

4 select * from 學生資訊表 where 姓名 like '張%'

5 select top 4 * from 學生資訊表 where 學號 like '9952%'

6 select count(*) as 男生人數 from 學生資訊表 where 性別='男'

7 select * form 學生資訊表 where 性別='女' and 黨員='是'

8 select 學號 from 成績表 where 成績》80 and 成績<90

9 select 學號,姓名 from 成績表 where 成績<60

ps:這題,如果姓名不在成績表中的話應該是:

select 學號,姓名 from 成績表,學生資訊表 where 成績表.學號=學生資訊表.學號 and 成績表.成績<60

10 select 學號,姓名,性別 from 學生資訊表 order by 學號 desc

這裡我把"學生表"寫成"學生資訊表",是為了看著更清楚

如果要改的話,自己看著改

9樓:匿名使用者

1,select * from 成績表

2,select 學好,姓名,年齡 from 學生表

sql資料庫中查詢選修了所有課程的學生的學號和姓名及選修門數

10樓:騰訊電腦管家

select s.sname, s.s*** , s.

sage, s.sdept c.**ame g.

grade from student s , course c ,grade g where s.sno = g.sno and g.

**o = c.**o;

11樓:站在風中望著你

??????????????????????????你好,sql是什麼

sql資料庫問題查詢所有學生和教師的姓名允許重

select 姓名,性別 from teacherswhere 教師號 in select 教師號 from students where sno 03160111 例如 select 姓名,性別 from teachers,studentswhere students.學號 03160111 an...

SQL資料庫中查詢選修了所有課程的學生的學號和姓名及選修門數

select s.sname,s.s s.sage,s.sdept c.ame g.grade from student s course c grade g where s.sno g.sno and g.o c.o 你好,sql是什麼 資料庫sql語句中 查詢選修了全部課程的學生的學號和姓名 理...

用SQL語句寫出,查詢所有選SQL課程的學生學號,姓名和專業

學生表 ta 選課表 tb select 學號,姓名,專業 from ta where 學號 in select 學號 from tb where 課程 sql 用sql語句查詢選修了3門及以上課程的學生學號,姓名,選修的課程數 寫乙個sql語句,查詢選修了5門課程的學生學號和姓名 select 學...