表结构

创建表数据
    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. 【设计模式】module模式&&Revealing module (揭示)模式

    写在前面 <head first设计模式>里有一篇文章,是说使用模式的心智, 1.初学者"心智" :"我要为HELLO WORLD找个模式" 2.中 ...

  2. 学习ExtJS的grid布局

    这是之前学习ExtJS布局的时候我导师让我重点熟悉的内容.之后会发一个最近写的结合MVC项目的grid布局的案例. 上一篇关于ExtJS的学习资料什么的都已经更在上一篇了,这里只是对一些代码的记录. ...

  3. Ubuntu16.04下安装mysql

    系统信息 (lsb_release -a) Distributor ID: Ubuntu Description: Ubuntu 16.04.2 LTS Release: 16.04 Codename ...

  4. MMORPG战斗系统随笔(二)、浅谈场寻路Flow Field PathFinding算法

    转载请标明出处http://www.cnblogs.com/zblade/ 今天给大家带来一篇游戏中寻路算法的博客.去年,我加入一款RTS的游戏项目,负责开发其中的战斗系统,战斗系统的相关知识,属于游 ...

  5. Redisson分布式锁的简单使用

    一:前言 我在实际环境中遇到了这样一种问题,分布式生成id的问题!因为业务逻辑的问题,我有个生成id的方法,是根据业务标识+id当做唯一的值! 而uuid是递增生成的,从1开始一直递增,那么在同一台机 ...

  6. 如何用java语言获取某个网页的源代码

    import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.URL; public class W ...

  7. 干货,比较全面的c#.net公共帮助类

    比较全面的c#帮助类 比较全面的c#帮助类,日常工作收集,包括前面几家公司用到的,各式各样的几乎都能找到,所有功能性代码都是独立的类,类与类之间没有联系,可以单独引用至项目,分享出来,方便大家,几乎都 ...

  8. 移动端分享到微信和QQ

    关于在H5页面实现分享到微信和QQ,当初做的时候由于没有做过这方面的功能,也查了很多资料,找了很多插件,试了很多方法,大部分的都是点击后出现一个二维码,这不 符合我的需求,所以在网上找了一个 nati ...

  9. ajax请求中设置特殊的RequestHeader

    现在ajax应用已经相当广泛了,有很多不错的ajax框架可供使用.ajax是一个异步请求,也主要是一种客户端的脚本行为.那么,如何在请求之前为请求添加特殊的一些头部信息呢? 下面是一个简单的例子,我用 ...

  10. winwebmail设置能用foxmail收发邮件

    域名解析注意 1.首先做A记录解析: 主机名处:输入 mail IP地址处:输入IP地址 2.做MX记录: 主机名处: 大都保持空输入,什么也不用输入   TTL:默认就可以了,不需要改动 优先级:一 ...