ICode9

精准搜索请尝试: 精确搜索
首页 > 数据库> 文章详细

SQL 查询练习题

2020-09-11 13:34:22  阅读:324  来源: 互联网

标签:练习题 查询 course teacher score student SQL id select


 

    • 查询所有的课程的名称及对应的任课老师
      • select course.cname, teacher.tname from course inner join teacher on course.teacher_id=teacher.tid;
    • 查询平均成绩大于80的同学的姓名
      • select student.sname, t1.avg_score from student inner join (select score.student_id, avg(num) as avg_score  from score inner join student on score.student_id=student.sid group by score.student_id having avg(num)>80) as t1 on student.sid=t1.student_id;
    • 查询没有报李平老师课的学生姓名
      • select student.sname from student where student.sid not in (select distinct score.student_id from score where score.course_id in (select course.cid from teacher inner join course on teacher.tid=course.teacher_id where teacher.tname = '李平老师'));
    • 查询没有同时选修物理课程和体育课程的学生姓名
      • select student.sname from student where student.sid in (select score.student_id from score where score.course_id in (select course.cid from course where course.cname in ('物理','体育')) group by score.student_id having count(score.course_id) = 1);

 

  • 查询挂科超过两门(包括两门)的学生姓名和班级
    • select class.cid,t1.sname from class inner join (select student.class_id from student where student.sid in (select score.student_id from score where score.num<60 group by score.student_id having count(score.course_id)>=2) as t1) on class.cid=t1.class_id;

 

标签:练习题,查询,course,teacher,score,student,SQL,id,select
来源: https://www.cnblogs.com/melissadong/p/13651215.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有