mysql查询未讲课教师_SQL数据库查询语言练习

《SQL数据库查询语言练习》由会员分享,可在线阅读,更多相关《SQL数据库查询语言练习(9页珍藏版)》请在人人文库网上搜索。

1、SQL数据库查询语言练习:一、建立一个数据库表student,数据表computer,字段名name,number,sex,SQL2000,flash,net ,其中SQL2000,flash,net设置为数值型数据1、输出所有男生的成绩select yuyan as SQL数据库 ,flash as 网络动画,net as 计算机网络 ;from computer ;where sex2、输出所有SQL成绩在90以上的女生的成绩select SQL2000 as SQL数据库 from computer ;where not sex and SQL2000=903、输出某一科目不合格所有的男。

2、生的成绩select yuyan as SQL数据库 ,flash as 网络动画,net as 计算机网络 ;from computer ;where sex and SQL2000=90二、问题描述:已知关系模式:s (sno,sname) 学生关系。sno 为学号,sname 为姓名c (cno,cname,cteacher)课程关系。cno 为课程号,cname 为课程名,cteacher 为任课教师sc(sno,cno,scgrade) 选课关系。scgrade 为成绩要求实现如下5个处理:1 找出没有选修过“李明”老师讲授课程的所有学生姓名2 列出有二门以上(含两门)不及格课程的学。

3、生姓名及其平均成绩3 列出既学过“1”号课程,又学过“2”号课程的所有学生姓名4 列出“1”号课成绩比“2”号同学该门课成绩高的所有学生的学号5 列出“1”号课成绩比“2”号课成绩高的所有学生的学号及其“1”号课和“2”号课的成绩1. 找出没有选修过“李明”老师讲授课程的所有学生姓名-实现代码:select sname from s ;where not exists;(select * from sc,c ;where sc.cno=c.cno and c.cteacher=李明 and sc.sno=s.sno)2. 列出有二门以上(含两门)不及格课程的学生姓名及其平均成绩-实现代码:se。

4、lect s.sno,s.sname,avg_scgrade=avg(sc.scgrade);from s,sc,(;select sno from sc;where scgrade=2;)a where s.sno=a.sno and sc.sno=a.sno;group by s.sno,s.sname3. 列出既学过“1”号课程,又学过“2”号课程的所有学生姓名-实现代码:select s.sno,s.sname;from s,(;select sc.sno;from sc,c;where sc.cno=c.cno;and c.cname in(1,2);group by sno;hav。

5、ing count(distinct cno)=2;)sc where s.sno=sc.sno 4. 列出“1”号课成绩比“2”号同学该门课成绩高的所有学生的学号-实现代码:select s.sno,s.sname;from s,sc sc1,sc sc2;where sc1.cno=1;and sc2.sno=2;and sc1.cno=s.cno;and sc1.scgradesc2.scgrade5. 列出“1”号课成绩比“2”号课成绩高的所有学生的学号及其“1”号课和“2”号课的成绩-实现代码:select sc1.sno,1号课成绩=sc1.scgrade,2号课成绩=sc2.sc。

6、grade;from sc sc1,sc sc2;where sc1.cno=1;and sc2.cno=2;and sc1.sno=sc2.sno;and sc1.scgradesc2.scgrade练习题目1、 查询Student表中的所有记录的Sname、Ssex和Class列。2、 查询教师所有的单位即不重复的Depart列。3、 查询Student表的所有记录。4、 查询Score表中成绩在60到80之间的所有记录。5、 查询Score表中成绩为85,86或88的记录。6、 查询Student表中“95031”班或性别为“女”的同学记录。7、 以Class降序查询Student表的所。

7、有记录。8、 以Cno升序、Degree降序查询Score表的所有记录。9、 查询“95031”班的学生人数。10、查询Score表中的最高分的学生学号和课程号。11、查询3-105号课程的平均分。12、查询Score表中至少有5名学生选修的并以3开头的课程的平均分数。13、查询最低分大于70,最高分小于90的Sno列。14、查询所有学生的Sname、Cno和Degree列。15、查询所有学生的Sno、Cname和Degree列。16、查询所有学生的Sname、Cname和Degree列。17、查询“95033”班所选课程的平均分。18、假设使用如下命令建立了一个grade表:create t。

8、able grade(low number(3,0),upp number(3),rank char(1);insert into grade values(90,100,A);insert into grade values(80,89,B);insert into grade values(70,79,C);insert into grade values(60,69,D);insert into grade values(0,59,E);commit;现查询所有同学的Sno、Cno和rank列。19、查询选修“3-105”课程的成绩高于“109”号同学成绩的所有同学的记录。20、查询sc。

9、ore中选学一门以上课程的同学中分数为非最高分成绩的记录。21、查询成绩高于学号为“109”、课程号为“3-105”的成绩的所有记录。22、查询和学号为108的同学同年出生的所有学生的Sno、Sname和Sbirthday列。23、查询“张旭“教师任课的学生成绩。24、查询选修某课程的同学人数多于5人的教师姓名。25、查询95033班和95031班全体学生的记录。26、查询存在有85分以上成绩的课程Cno.27、查询出“计算机系“教师所教课程的成绩表。28、查询“计算机系”与“电子工程系“不同职称的教师的Tname和Prof。29、查询选修编号为“3-105“课程且成绩至少高于选修编号为“3-。

10、245”的同学的Cno、Sno和Degree,并按Degree从高到低次序排序。30、查询选修编号为“3-105”且成绩高于选修编号为“3-245”课程的同学的Cno、Sno和Degree.31、查询所有教师和同学的name、sex和birthday.32、查询所有“女”教师和“女”同学的name、sex和birthday.33、查询成绩比该课程平均成绩低的同学的成绩表。34、查询所有任课教师的Tname和Depart.35、 查询所有未讲课的教师的Tname和Depart. 36、查询至少有2名男生的班号。37、查询Student表中不姓“王”的同学记录。38、查询Student表中每个学生。

11、的姓名和年龄。39、查询Student表中最大和最小的Sbirthday日期值。40、以班号和年龄从大到小的顺序查询Student表中的全部记录。41、查询“男”教师及其所上的课程。42、查询最高分同学的Sno、Cno和Degree列。43、查询和“李军”同性别的所有同学的Sname.44、查询和“李军”同性别并同班的同学Sname.45、查询所有选修“计算机导论”课程的“男”同学的成绩表SQL语句练习题参考答案 1、 select Sname,Ssex,Class from Student;2、 select distinct depart from teacher;3、 select Sn。

12、o as 学号,Sname as 姓名,Ssex as 性别,Sbirthday as出生日期,Class as班号from student;或select Sno as 学号,Sname as 姓名,Ssex as 性别,Sbirthday as 出生日期,Class as 班号 from student;4、 select * from score where degree between 60 and 80;或select * from score where degree=60 and degree5;13、select Sno from score group by Sno havi。

13、ng min(degree)70 and max(degree)y.degree andy.sno=109and y.cno=3-105;20、1,查询成绩非本科最高 select * from score b where degree y.degree and y.sno=109and y.cno=3-105;select cno,sno,degree from score where degree (select degree from score where sno=109 and cno=3-105)22、select sno,sname,sbirthday from student 。

14、where to_char(sbirthday,yyyy)=(select to_char(sbirthday,yyyy) from student where sno=108);23、select cno,sno,degree from score where cno=(select x.cno from course x,teacher y where x.tno=y.tno and y.tname=张旭);24、select tname from teacher where tno in(select x.tno from course x,score y where x.cno=y.c。

15、no group by x.tno having count(x.tno)5);25、select * from student where class in(95033,95031);26、select distinct cno from score where degree in (select degree from score where degree85);27、select * from score where cno in(select x.cno from course x,teacher y where y.tno=x.tno and y.depart=计算机系);28、se。

16、lect tname,prof from teacher where depart=计算机系 and prof not in (select prof from teacher where depart=电子工程系);29、select * from score where cno=3-105 and degreeany (select degree from score where cno=3-245)order by degree desc;30、select * from score where cno=3-105 and degreeall(select degree from sco。

17、re where cno=3-245);31、select tname,tsex,tbirthday from teacherunion select sname,ssex,sbirthday from student;32、select tname,tsex,tbirthday from teacher where tsex=女union select sname,ssex,sbirthday from student where ssex=女;33、select * from score a where degree=2;37、select * from student where sna。

18、me not like王_;38、select sname as 姓名,(to_char(sysdate,yyyy)-to_char(sbirthday,yyyy) as 年龄 from student39、select sname,sbirthday as 最大 from student where sbirthday =(select min (sbirthday) from student)union select sname,sbirthday as 最小 from student where sbirthday =(select max(sbirthday) from student。

19、) 40、select class,sname,sbirthday from student order by class desc,sbirthday;41、select x.tname,y.cname from teacher x,course y where x.tno=y.tno and x.tsex=男;42、select * from score where degree=(select max(degree)from score);43、select sname from student where ssex=(select ssex from student where sname=李军);44、select sname from student where ssex=(select ssex from student where sname=李军) and class=(select class from student where sname=李军);45、select * from score where sno in(select sno from student where ssex=男) and cno=(select cno from coursewhere cname=计算机导论);。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值