表结构

创建表数据
    SET NAMES utf8;
    SET FOREIGN_KEY_CHECKS = 0;

    -- ----------------------------
    --  Table structure for `class`
    -- ----------------------------
    DROP TABLE IF EXISTS `class`;
    CREATE TABLE `class` (
      `cid` int(11) NOT NULL AUTO_INCREMENT,
      `caption` varchar(32) NOT NULL,
      PRIMARY KEY (`cid`)
    ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;

    -- ----------------------------
    --  Records of `class`
    -- ----------------------------
    BEGIN;
    INSERT INTO `class` VALUES ('1', '三年二班'), ('2', '三年三班'), ('3', '一年二班'), ('4', '二年九班');
    COMMIT;

    -- ----------------------------
    --  Table structure for `course`
    -- ----------------------------
    DROP TABLE IF EXISTS `course`;
    CREATE TABLE `course` (
      `cid` int(11) NOT NULL AUTO_INCREMENT,
      `cname` varchar(32) NOT NULL,
      `teacher_id` int(11) NOT NULL,
      PRIMARY KEY (`cid`),
      KEY `fk_course_teacher` (`teacher_id`),
      CONSTRAINT `fk_course_teacher` FOREIGN KEY (`teacher_id`) REFERENCES `teacher` (`tid`)
    ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;

    -- ----------------------------
    --  Records of `course`
    -- ----------------------------
    BEGIN;
    INSERT INTO `course` VALUES ('1', '生物', '1'), ('2', '物理', '2'), ('3', '体育', '3'), ('4', '美术', '2');
    COMMIT;

    -- ----------------------------
    --  Table structure for `score`
    -- ----------------------------
    DROP TABLE IF EXISTS `score`;
    CREATE TABLE `score` (
      `sid` int(11) NOT NULL AUTO_INCREMENT,
      `student_id` int(11) NOT NULL,
      `course_id` int(11) NOT NULL,
      `num` int(11) NOT NULL,
      PRIMARY KEY (`sid`),
      KEY `fk_score_student` (`student_id`),
      KEY `fk_score_course` (`course_id`),
      CONSTRAINT `fk_score_course` FOREIGN KEY (`course_id`) REFERENCES `course` (`cid`),
      CONSTRAINT `fk_score_student` FOREIGN KEY (`student_id`) REFERENCES `student` (`sid`)
    ) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=utf8;

    -- ----------------------------
    --  Records of `score`
    -- ----------------------------
    BEGIN;
    INSERT INTO `score` VALUES ('1', '1', '1', '10'), ('2', '1', '2', '9'), ('5', '1', '4', '66'), ('6', '2', '1', '8'), ('8', '2', '3', '68'), ('9', '2', '4', '99'), ('10', '3', '1', '77'), ('11', '3', '2', '66'), ('12', '3', '3', '87'), ('13', '3', '4', '99'), ('14', '4', '1', '79'), ('15', '4', '2', '11'), ('16', '4', '3', '67'), ('17', '4', '4', '100'), ('18', '5', '1', '79'), ('19', '5', '2', '11'), ('20', '5', '3', '67'), ('21', '5', '4', '100'), ('22', '6', '1', '9'), ('23', '6', '2', '100'), ('24', '6', '3', '67'), ('25', '6', '4', '100'), ('26', '7', '1', '9'), ('27', '7', '2', '100'), ('28', '7', '3', '67'), ('29', '7', '4', '88'), ('30', '8', '1', '9'), ('31', '8', '2', '100'), ('32', '8', '3', '67'), ('33', '8', '4', '88'), ('34', '9', '1', '91'), ('35', '9', '2', '88'), ('36', '9', '3', '67'), ('37', '9', '4', '22'), ('38', '10', '1', '90'), ('39', '10', '2', '77'), ('40', '10', '3', '43'), ('41', '10', '4', '87'), ('42', '11', '1', '90'), ('43', '11', '2', '77'), ('44', '11', '3', '43'), ('45', '11', '4', '87'), ('46', '12', '1', '90'), ('47', '12', '2', '77'), ('48', '12', '3', '43'), ('49', '12', '4', '87'), ('52', '13', '3', '87');
    COMMIT;

    -- ----------------------------
    --  Table structure for `student`
    -- ----------------------------
    DROP TABLE IF EXISTS `student`;
    CREATE TABLE `student` (
      `sid` int(11) NOT NULL AUTO_INCREMENT,
      `gender` char(1) NOT NULL,
      `class_id` int(11) NOT NULL,
      `sname` varchar(32) NOT NULL,
      PRIMARY KEY (`sid`),
      KEY `fk_class` (`class_id`),
      CONSTRAINT `fk_class` FOREIGN KEY (`class_id`) REFERENCES `class` (`cid`)
    ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;

    -- ----------------------------
    --  Records of `student`
    -- ----------------------------
    BEGIN;
    INSERT INTO `student` VALUES ('1', '男', '1', '理解'), ('2', '女', '1', '钢蛋'), ('3', '男', '1', '张三'), ('4', '男', '1', '张一'), ('5', '女', '1', '张二'), ('6', '男', '1', '张四'), ('7', '女', '2', '铁锤'), ('8', '男', '2', '李三'), ('9', '男', '2', '李一'), ('10', '女', '2', '李二'), ('11', '男', '2', '李四'), ('12', '女', '3', '如花'), ('13', '男', '3', '刘三'), ('14', '男', '3', '刘一'), ('15', '女', '3', '刘二'), ('16', '男', '3', '刘四');
    COMMIT;

    -- ----------------------------
    --  Table structure for `teacher`
    -- ----------------------------
    DROP TABLE IF EXISTS `teacher`;
    CREATE TABLE `teacher` (
      `tid` int(11) NOT NULL AUTO_INCREMENT,
      `tname` varchar(32) NOT NULL,
      PRIMARY KEY (`tid`)
    ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;

    -- ----------------------------
    --  Records of `teacher`
    -- ----------------------------
    BEGIN;
    INSERT INTO `teacher` VALUES ('1', '张磊老师'), ('2', '李平老师'), ('3', '刘海燕老师'), ('4', '朱云海老师'), ('5', '李杰老师');
    COMMIT;

    SET FOREIGN_KEY_CHECKS = 1;

临时表,链表查询
    -- 查询“生物”课程比“物理”课程成绩高的所有学生的学号;
    SELECT A.student_id from (
    (SELECT student_id,num from score
    LEFT JOIN course on score.course_id=course.cid
    where cname='生物') as A
    LEFT JOIN
    (SELECT student_id,num from score LEFT JOIN course on score.course_id=course.cid
    where cname='物理')as B on A.student_id=B.student_id)
    WHERE A.num>B.num;

    -- 查询所有同学的学号、姓名、选课数、总成绩
    SELECT A.student_id,student.sname,A.choice_num,A.sum_score from (
    SELECT student_id,COUNT(1) as choice_num ,SUM(num) as sum_score from score GROUP BY student_id) as A
    LEFT JOIN
    student on A.student_id=student.sid
    
    -- 查询课程编号“2”的成绩比课程编号“1”课程低的所有同学的学号、姓名
    SELECT student.sid,student.sname from student where student.sid in (
    SELECT A.student_id from (
    (SELECT student_id,num from score LEFT JOIN course on score.course_id=course.cid where cid='2')A
    LEFT JOIN
    (SELECT student_id,num from score LEFT JOIN course on score.course_id=course.cid where cid='1')B
    on A.student_id=B.student_id) WHERE A.num>B.num);
    
    -- 查询和“2”号的同学学习的课程完全相同的其他同学学号和姓名

    SELECT student_id from (
    SELECT * from score where student_id=(
    SELECT student_id from score GROUP BY student_id HAVING count(1)=(
    SELECT count(1) as count_course from score GROUP BY student_id HAVING student_id=2 )and student_id!=2 ) and  course_id in
    (select course_id from score WHERE student_id=2)) as A GROUP BY student_id HAVING count(*)=
    (SELECT count(1) as count_course from score GROUP BY student_id HAVING student_id=2)
    
    -- 查询平均成绩大于85的所有学生的学号、姓名和平均成绩;
    SELECT student_id,avg(num) as avgnum,student.sname from score  LEFT JOIN student on score.student_id=student.sid
    GROUP BY student_id HAVING avgnum > 85

    -- 查询课程名称为“物理”,且分数低于60的学生姓名和分数;
    SELECT student.sname,score.num from course LEFT JOIN score on score.course_id=course.cid LEFT JOIN student on score.student_id=student.sid
    WHERE course.cname='物理' and score.num < 60
    
    -- 查询课程编号为3且课程成绩在80分以上的学生的学号和姓名;
    SELECT student_id,student.sname from course LEFT JOIN score on score.course_id=course.cid LEFT JOIN student on score.student_id=student.sid
    WHERE cid=3 and score.num>80
    
    -- 查询选修“李平老师'所授课程的学生中,成绩最高的学生姓名及其成绩;
    SELECT A.num,A.sname,A.cname from (
    SELECT score.num,student.sname,course.cname from teacher LEFT JOIN course on course.teacher_id=teacher.tid LEFT JOIN score on course.cid=score.course_id
    LEFT JOIN student on score.student_id=student.sid
    WHERE teacher.tname='李平老师' ORDER BY num desc ) as A GROUP BY cname
    
    -- 求选了课程的学生人数
    SELECT count(*) as person from (
    SELECT student.sid from student LEFT JOIN score as score1 on score1.student_id=student.sid  WHERE student.sid  in (SELECT student_id from score GROUP BY student_id)
    GROUP BY student.sid ) as A
    
    -- 查询没学过“李平老师”讲授的任一门课程的学生姓名;
    SELECT student_id,sname from score LEFT JOIN student
    on score.student_id=student.sid
    WHERE score.student_id not in (
    SELECT DISTINCT s1.student_id from teacher LEFT JOIN course on course.teacher_id=teacher.tid
    LEFT JOIN score  as s1 on course.cid=s1.course_id
    WHERE tname='李平老师'  )
        
    

条件查询语句    
    -- 查询没学过“李平老师“课的同学的学号、姓名
    SELECT student.sid,student.sname from student where student.sid not in (
    SELECT student_id from
    (SELECT cid from course LEFT JOIN teacher on course.teacher_id=teacher.tid
    where tname='李平老师' )as A LEFT JOIN score on score.course_id=A.cid GROUP BY student_id)
    
    -- 查询学过“李平老师”所教的所有课的同学的学号、姓名
    SELECT student.sid,student.sname from student where student.sid in (
    SELECT student_id from
    (SELECT cid from course LEFT JOIN teacher on course.teacher_id=teacher.tid
    where tname='李平老师' )as A LEFT JOIN score on score.course_id=A.cid GROUP BY student_id)
    
    -- 查询至少有一门课与学号为“1”的同学所学相同的同学的学号和姓名
    SELECT student.sid,student.sname from student where sid in (
    SELECT student_id from score where course_id in (
    SELECT course_id from score where student_id = '1') GROUP BY student_id HAVING count(course_id)>1);
    
    -- 查询不同课程但成绩相同的学生的学号、课程号、学生成绩
    SELECT s1.student_id,s1.course_id,s1.num from score as s1,score as s2 WHERE s1.num=s2.num and s1.student_id=s2.student_id and  s1.course_id!=s2.course_id      

分组查询
    -- 查询平均成绩大于60分的同学的学号和平均成绩
    SELECT student_id,AVG(num) as number from score GROUP BY student_id HAVING number > 60;
    
    -- 查询学过“1”并且也学过编号“2”课程的同学的学号、姓名;
    SELECT student_id,count(1) as count_course from score where course_id in (1,2) GROUP BY student_id HAVING count_course>1;
    
    -- 查询有课程成绩小于60分的同学的学号、姓名
    SELECT sid,sname from student where sid in (
    SELECT student_id from score WHERE num < 60 GROUP BY student_id)
    
    -- 查询没有学全所有课的同学的学号、姓名
    SELECT student.sid,student.sname from student where student.sid in (
    SELECT student_id from score GROUP BY student_id HAVING count(course_id) < (
    SELECT count(1) from course));
    
    -- 查询至少有一门课与学号为“1”的同学所学相同的同学的学号和姓名
    SELECT student.sid,student.sname from student where sid in (
    SELECT student_id from score where course_id in (
    SELECT course_id from score where student_id = '1') GROUP BY student_id HAVING count(course_id)>1) and sid !=1;
    
    -- 查询各科成绩最高和最低的分:以如下形式显示:课程ID,最高分,最低分;
    select course_id,max(num) as 最高分,min(num) as 最低分 from score GROUP BY course_id;
    
    -- 查询各科成绩最高和最低的分:以如下形式显示:课程ID,最高分,最低分;
    select course_id,max(num) as 最高分,min(num) as 最低分 from score GROUP BY course_id;
    
    -- 课程平均分从高到低显示(现实任课老师)
    SELECT course_id,teacher_id,AVG(num) as avgnum from course LEFT JOIN score
    on score.course_id=course.cid
    GROUP BY course_id ORDER BY avgnum desc
    
    -- 查询每门课程被选修的学生数
    SELECT course_id,count(*) as person from score GROUP BY course_id
    
    -- 查询出只选修了一门课程的全部学生的学号和姓名
    SELECT * from (
    SELECT student_id,course_id,count(*) as course_count from score GROUP BY student_id ) as  A
    LEFT JOIN student on student.sid=A.student_id   WHERE A.course_count=1
    
    -- 查询男生、女生的人数;
    select gender,count(*) as person from student GROUP BY gender
    
    -- 查询同名同姓学生名单,并统计同名人数
    SELECT sname,count(*) as person from student GROUP BY student.sname HAVING person>1
    
    -- 检索至少选修两门课程的学生学号;
    SELECT student_id,count(*) as count_course from score GROUP BY student_id HAVING count_course >= 2
    
    -- 查询全部学生都选修的课程的课程号和课程名;
    select course_id,count(*) as person from score GROUP BY course_id HAVING person=(SELECT count(1) from student)
        
    -- 查询学的课程最少的学生学号和课程号
    SELECT s1.student_id,s1.course_id from score as s1
    GROUP BY s1.student_id ORDER BY count(1) limit 1
    
    -- 查询两门以上不及格课程的同学的学号及其平均成绩;
    SELECT student_id,course_id,avg(num) from score where num < 60 GROUP BY student_id HAVING count(1) >= 2
    
    -- 检索“4”课程分数小于60,按分数降序排列的同学学号;
    select student_id from score where course_id=4 and num < 60 ORDER BY num desc

        
模糊匹配
    -- 查询姓“李”的老师的个数
    select * from teacher where tname like '李%'
        
    -- 查询姓“张”的学生名单;
    SELECT * from student WHERE sname like '张%';
    
    
排序
    -- 按各科平均成绩从低到高和及格率的百分数从高到低顺序
    select course_id, avg(num) as avgnum,sum(case when score.num > 60 then 1 else 0 END)/count(1)*100 as percent from score group by course_id order by avgnum asc,percent desc;
    
    -- 查询各科成绩前三名的记录:(不考虑成绩并列情况)
    SELECT score1.sid,score1.course_id,res.first_num,res.second_num,res.third_num from score as score1 LEFT JOIN (
    SELECT sid,
    (SELECT num from score as score2 WHERE score2.course_id=score3.course_id ORDER BY num desc LIMIT 0,1) as first_num,
    (SELECT num from score as score2 WHERE score2.course_id=score3.course_id ORDER BY num desc LIMIT 3,1) as second_num,
    (SELECT num from score as score2 WHERE score2.course_id=score3.course_id ORDER BY num desc LIMIT 4,1) as third_num
    from score as score3
    ) as res
    on score1.sid=res.sid GROUP BY score1.course_id;
    
    -- 查询每门课程的平均成绩,结果按平均成绩升序排列,平均成绩相同时,按课程号降序排列;
    SELECT * from (
    SELECT course_id,avg(num) as avgnum from score GROUP BY course_id ) as A ORDER BY A.avgnum asc,A.course_id DESC
    
    -- 查询每门课程成绩最好的前两名;
    select score1.course_id ,res.first_num,res.second_num from score as score1 LEFT JOIN  
    ( select sid,
    (select num from score as score2 WHERE score3.course_id=score2.course_id ORDER BY score2.num desc LIMIT 0,1) as first_num,
    (select num from score as score2 WHERE score3.course_id=score2.course_id ORDER BY score2.num desc LIMIT 3,1) as second_num
    from score as score3
    ) as res  
    on res.sid=score1.sid
    GROUP BY score1.course_id
    

case when then else end
    -- 按各科平均成绩从低到高和及格率的百分数从高到低顺序
    select course_id, avg(num) as avgnum,sum(case when score.num > 60 then 1 else 0 END)/count(1)*100 as percent from score group by course_id order by avgnum asc,percent desc;

delete
    -- 删除“2”同学的“1”课程的成绩;
    delete from score where student_id=2 and course_id=1

sql语句练习题及答案的更多相关文章

  1. 数据库SQL语句练习题

    一.            设有一数据库,包括四个表:学生表(Student).课程表(Course).成绩表(Score)以及教师信息表(Teacher).四个表的结构分别如表1-1的表(一)~表( ...

  2. 20_学生选课数据库SQL语句练习题

    一.            设有一数据库,包括四个表:学生表(Student).课程表(Course).成绩表(Score)以及教师信息表(Teacher).四个表的结构分别如表1-1的表(一)~表( ...

  3. SQL语句练习题【主供自己学习、记忆】

    1.这是我在面试中遇到的一道sql题,没有答出来,o(╥﹏╥)o 这是我刚才在网上查找函数之后写的SQL语句,能得到这个结果.[谁有不同的方法,欢迎底下评论留言哈] select (DATENAME( ...

  4. 学生选课数据库SQL语句练习题

    一.            设有一数据库,包括四个表:学生表(Student).课程表(Course).成绩表(Score)以及教师信息表(Teacher).四个表的结构分别如表1-1的表(一)~表( ...

  5. ORACLE SQL语句练习题

    --1:选择部门30中的所有员工select * from emp where deptno=30--2:列出所有办事员(clerk) 的姓名.编号和部门编号select empno,ename,de ...

  6. sql语句练习题

    6.Mysql不要用top用limit 在我们使用查询语句的时候,经常要返回前几条或者中间某几行数据,这个时候怎么办呢? 查找时Mysql不能用top,反正我用不了,查了下可以用limit来替换. 比 ...

  7. Mysql Sql 语句练习题 (50道)

    MySql 语句练习50题 表名和字段 –1.学生表 Student(s_id,s_name,s_birth,s_sex) –学生编号,学生姓名, 出生年月,学生性别 –2.课程表 Course(c_ ...

  8. 20_学生选课数据库SQL语句练习题1

    25.查询95033班和95031班全体学生的记录. select * from STUDENT t,SCORE s where t.sclass=95033 or t.sclass=95031 26 ...

  9. _学生选课数据库SQL语句练习题

    1. 查询Student表中的所有记录的Sname.Ssex和Class列. select Sname,Ssex,t.sclass from STUDENT t 2. 查询教师所有的单位即不重复的De ...

随机推荐

  1. [js高手之路] html5 canvas系列教程 - arcTo(弧度与二次,三次贝塞尔曲线以及在线工具)

    之前,我写了一个arc函数的用法:[js高手之路] html5 canvas系列教程 - arc绘制曲线图形(曲线,弧线,圆形). arcTo: cxt.arcTo( cx, cy, x2, y2, ...

  2. Spring 学习——基于Spring WebSocket 和STOMP实现简单的聊天功能

    本篇主要讲解如何使用Spring websocket 和STOMP搭建一个简单的聊天功能项目,里面使用到的技术,如websocket和STOMP等会简单介绍,不会太深,如果对相关介绍不是很了解的,请自 ...

  3. POJ1422Air Raid(二分图,最小不相交路径覆盖)

    Air Raid Consider a town where all the streets are one-way and each street leads from one intersecti ...

  4. [转载]Reids配置文件详解

    # redis 配置文件示例 # 当你需要为某个配置项指定内存大小的时候,必须要带上单位, # 通常的格式就是 1k 5gb 4m 等酱紫: # # 1k => 1000 bytes # 1kb ...

  5. 华为olt ma5680t常用命令详解

    进入待替换的故障ONU所注册的单板 interface epon 0/1         //此处可以通过查看PON口下设备状态来获取需要替换的ONU ID.假设故障设备位于2端口,ID为6 ont ...

  6. python 多进程间交换信息与共享信息

    多线程调用函数,获取其返回值,个人总结了三种方法: 一.Queue(进程队列) 构造方法:multiprocessing.Queue([maxsize]) Queue.Queue类即是一个队列的同步实 ...

  7. 深入浅出AQS之组件概览

    之前分析了AQS中的独占锁,共享锁,条件队列三大模块,现在从结构上来看看AQS各个组件的情况. 原文地址:http://www.jianshu.com/p/49b86f9cd7ab 深入浅出AQS之独 ...

  8. linux_base_commond_one

    1.cd commond a. cd usr 切换到该目录下usr目录  b. cd ../ 切换到上一层目录  c.cd / 切换到系统根目录  d. cd ~ 切换到用户主目录 e. cd - 切 ...

  9. BAT级别分类

    阿里的级别:P为技术岗,M为管理岗.P7是技术专家级别. 阿里级别对应薪资:  百度使用的T系列及对应薪资: 腾讯的T系列及对应薪资:

  10. CoreCLR源码探索(七) JIT的工作原理(入门篇)

    很多C#的初学者都会有这么一个疑问, .Net程序代码是如何被机器加载执行的? 最简单的解答是, C#会通过编译器(CodeDom, Roslyn)编译成IL代码, 然后CLR(.Net Framew ...