学生—课程”数据库中包含学生表、课程表、学生选课表3个表
学生—课程”数据库中包含学生表、课程表、学生选课表3个表,分别是:学生表:Student(Sno,Sname,Ssex,Sage,Sdept)学号(Sno),姓名(Sna...
学生—课程”数据库中包含学生表、课程表、学生选课表3个表,分别是:
学生表:Student(Sno,Sname,Ssex,Sage,Sdept)
学号(Sno),姓名(Sname),性别(Ssex),年龄(Sage),系(Sdept),Sno为主码。
课程表:Course(Cno,Cname,Cpno,Ccredit)
课程号(Cno),课程名(Cname),前序课号(Cpno),学分(Ccredit),Cno为主码。
学生选课表:SC(Sno,Cno,Grade)
学号(Sno),课程号(Cno),成绩(Grade),主码为(Sno,Cno)。
(1)查询所有姓王学生的学号和性别。
(2)查询所有不姓刘的学生的姓名。
(3)查询计算机系年龄在20岁以下的学生姓名。
(4)查询学生的年龄并按年龄升序排列。
(5)查询选修了课程的学生人数。
(6)计算1号课程的学生的平均成绩。
(7)列出各门课程及其选课人数。
(8)查询每个学生及其选修课程的详细信息。 展开
学生表:Student(Sno,Sname,Ssex,Sage,Sdept)
学号(Sno),姓名(Sname),性别(Ssex),年龄(Sage),系(Sdept),Sno为主码。
课程表:Course(Cno,Cname,Cpno,Ccredit)
课程号(Cno),课程名(Cname),前序课号(Cpno),学分(Ccredit),Cno为主码。
学生选课表:SC(Sno,Cno,Grade)
学号(Sno),课程号(Cno),成绩(Grade),主码为(Sno,Cno)。
(1)查询所有姓王学生的学号和性别。
(2)查询所有不姓刘的学生的姓名。
(3)查询计算机系年龄在20岁以下的学生姓名。
(4)查询学生的年龄并按年龄升序排列。
(5)查询选修了课程的学生人数。
(6)计算1号课程的学生的平均成绩。
(7)列出各门课程及其选课人数。
(8)查询每个学生及其选修课程的详细信息。 展开
展开全部
您好,这样:
--1
select Sname,Sage from Student where Sage<(select Sage from Student where Sno='某一学生') and Sdept='数学系'
--2
select Sname from Student where Sno in (select Sno from SC)
--3
select Sname from Student where Sno in (select Sno from SC group by Sno having count(*)=(select count(*) from Course ))
--4
题意不清楚。
--1
select Sname,Sage from Student where Sage<(select Sage from Student where Sno='某一学生') and Sdept='数学系'
--2
select Sname from Student where Sno in (select Sno from SC)
--3
select Sname from Student where Sno in (select Sno from SC group by Sno having count(*)=(select count(*) from Course ))
--4
题意不清楚。
展开全部
看一下。等下写写。
1.
select sno, ssex from student where
sname like '王%'
2.
select sname from student where
sname not like '刘%'
3.
select sname from student where
sage < 20
4.
select sage from student order by sage asc
5. select count(*) from student where sno in (
select sno from sc)
1.
select sno, ssex from student where
sname like '王%'
2.
select sname from student where
sname not like '刘%'
3.
select sname from student where
sage < 20
4.
select sage from student order by sage asc
5. select count(*) from student where sno in (
select sno from sc)
追问
可以把剩下的几个问题帮忙回答上来么,谢谢了!
追答
6.
select AVG(GRADE) from sc where cno = '1'
7.
select c.cno, c.cname, ta.cc from course c left outer join
(
select cno , count(*) as cc from sc
group by cno
)ta
on c.cno =ta.cno
8.
select c.sno, c.sname, c.ssex, c.sage, c.sdept, ta.cno, ta.cname, ta.credit, ta.grade from student c left outer join
(
select b.sno, a.cno, a.cname, a.credit, b.grade from
course a, sc.b
where a.cno = b.cno
)
ta
on c.sno =ta.sno
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询