MySql 练习 - 查询强化训练

  • 参考图

1. 创建表

-- 创建班级表
create table class(
cid int primary key auto_increment,
caption varchar(32) not null
)ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- 创建学生表
create table student(
sid int primary key auto_increment,
gender char(1) not null,
class_id int not null,
sname varchar(32) not null,
foreign key(class_id) references class(cid) on delete cascade on update cascade
)ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- 创建老师表
create table teacher(
tid int primary key auto_increment,
tname varchar(32) not null
)ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- 创建课程表
create table course(
cid int primary key auto_increment,
cname varchar(32) not null,
teacher_id int not null,
foreign key(teacher_id) references teacher(tid) on delete cascade on update cascade
)ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- 创建成绩表
create table score(
sid int primary key auto_increment,
student_id int not null,
course_id int not null,
num int not null,
foreign key(student_id) references student(sid) on delete cascade on update cascade,
foreign key(course_id) references course(cid) on delete cascade on update cascade
)ENGINE=InnoDB DEFAULT CHARSET=utf8;

2. 各个表的数据准备

-- 班级表插入记录
insert into class values
(1, '三年二班'),
(2, '三年三班'),
(3, '一年二班'),
(4, '二年一班');

-- 学生表插入记录
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', '刘四');

-- 老师表插入记录
insert into teacher values
('1', '张磊'),
('2', '李平'),
('3', '刘海燕'),
('4', '朱云海'),
('5', '李春秋');

-- 课程表插入记录
insert into course values
('1', '生物', '1'),
('2', '物理', '2'),
('3', '体育', '3'),
('4', '美术', '2');

-- 成绩表插入记录
insert into score values
('1', '1', '1', '10'),
('2', '1', '2', '9'),
('3', '1', '3', '76'),
('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');

3. 查询题目

1、查询所有的课程的名称以及对应的任课老师姓名

2、查询学生表中男女生各有多少人

3、查询物理成绩等于100的学生的姓名

4、查询平均成绩大于八十分的同学的姓名和平均成绩

5、查询所有学生的学号,姓名,选课数,总成绩

6、 查询姓李老师的个数

7、 查询没有报李平老师课的学生姓名

8、 查询物理课程的分数比生物课程的分数高的学生的学号

9、 查询没有同时选修物理课程和体育课程的学生姓名

10、查询挂科超过两门(包括两门)的学生姓名和班级

11、查询选修了所有课程的学生姓名

12、查询李平老师教的课程的所有成绩记录

13、查询全部学生都选修了的课程号和课程名

14、查询每门课程被选修的次数

15、查询只选修了一门课程的学生学号和姓名

16、查询所有学生考出的成绩并按从高到低排序(成绩去重)

17、查询平均成绩大于85的学生姓名和平均成绩

18、查询生物成绩不及格的学生姓名和对应生物分数

19、查询在所有选修了李平老师课程的学生中,这些课程(李平老师的课程,不是所有课程)平均成绩最高的学生姓名

20、查询每门课程成绩最好的课程id、学生姓名和分数

21、查询不同课程但成绩相同的课程号、学生号、成绩 

22、查询没学过“李平”老师课程的学生姓名以及选修的课程名称 

23、查询所有选修了学号为2的同学选修过的一门或者多门课程的同学学号和姓名 

24、任课最多的老师中学生单科成绩最高的课程id、学生姓名和分数

4. 参考答案

1、查询所有的课程的名称以及对应的任课老师姓名
select course.cname, teacher.tname
from course, teacher
where course.teacher_id = teacher.tid;

2、查询学生表中男女生各有多少人
select gender, count(sid) from student group by gender;

3、查询物理成绩等于100的学生的姓名
select sname, num
from score, student
where course_id = (select cid from course where cname = '物理')
and num = 100
and score.student_id=student.sid;

4、查询平均成绩大于八十分的同学的姓名和平均成绩
select sname, avg(num) 平均成绩
from score, student
where student.sid=score.student_id
group by student_id
having avg(num)>80;

5、查询所有学生的学号,姓名,选课数,总成绩
select student_id, sname, count(course_id) 选课数, sum(num) 总成绩
from score, student
where student_id=student.sid
group by student_id;

6、 查询姓李老师的个数
select sum(case when tname like '李%' then 1 else 0 end) 李
from teacher;
-- select count(tid) from teacher where tname like '李%';

7、 查询没有报李平老师课的学生姓名
select sname
from student
where sid not in (select student_id from score where course_id in (select cid from course where teacher_id = (select tid from teacher where tname='李平')) group by student_id);

8、 查询物理课程的分数比生物课程的分数高的学生的学号
select wl.student_id from
(select student_id, num from score where course_id = (select cid from course where cname='物理')) as wl inner join
(select student_id, num from score where course_id = (select cid from course where cname='生物')) as sw on wl.student_id = sw.student_id
where wl.num > sw.num;

9、 查询没有同时选修物理课程和体育课程的学生姓名
select sname
from student
where sid not in
(select student_id from score
where course_id in (select cid from course where cname='物理' or cname='体育')
group by student_id
having count(sid)=2);

10、查询挂科超过两门(包括两门)的学生姓名和班级
select class_id, caption, sname
from student, class
where cid= class_id
and sid in
(select student_id from score where num < 60 group by student_id having count(student_id)>=2);

11、查询选修了所有课程的学生姓名
select sname from student
where sid not in
(select student_id from score group by student_id having count(course_id) = (select count(cid) from course));

12、查询李平老师教的课程的所有成绩记录
select sname, cname, num
from score, course, student
where student_id=student.sid
and course_id=course.cid
and course_id in
(select cid from course where teacher_id = (select tid from teacher where tname='李平'));

13、查询全部学生都选修了的课程号和课程名
select cid, cname from course
where cid in
(select course_id from score group by course_id having count(student_id)=(select count(sid) from student));

14、查询每门课程被选修的次数
select count(student_id) from score group by course_id;

15、查询只选修了一门课程的学生学号和姓名
select sid, sname from student
where sid in
(select student_id from score group by student_id having count(course_id)=1);

16、查询所有学生考出的成绩并按从高到低排序(成绩去重)
select distinct num from score
order by num desc;

17、查询平均成绩大于85的学生姓名和平均成绩
select sname, avg(num)
from score, student
where student_id=student.sid
group by student_id
having avg(num)>85;

18、查询生物成绩不及格的学生姓名和对应生物分数
select sname, num
from score, student
where num < 60 and student_id=student.sid
and course_id = (select cid from course where cname='生物');

19、查询在所有选修了李平老师课程的学生中,这些课程(李平老师的课程,不是所有课程)平均成绩最高的学生姓名
select sname
from score, student
where student_id=student.sid
and course_id in (select cid from course where teacher_id = (select tid from teacher where tname='李平'))
group by student_id
order by sum(num) desc limit 1;

20、查询每门课程成绩最好的课程id、学生姓名和分数
select score.course_id, sname, num
from student, score, (select course_id, max(num) as mnum from score group by course_id) as mnum_course
where student_id=student.sid
and mnum_course.course_id = score.course_id
and mnum_course.mnum=score.num;

21、查询不同课程但成绩相同的课程号、学生号、成绩
select course_id, student_id, num
from score as s1
where exists
(select s2.course_id, s2.student_id, s2.num
from score as s2
where s1.student_id = s2.student_id
and s1.course_id != s2.course_id
and s1.num = s2.num);

22、查询没学过“李平”老师课程的学生姓名以及选修的课程名称
select sname, cname
from score, course inner join student on
where student.sid=score.student_id
and course.cid=score.course_id
and student.sid not in (select student_id from score where course_id in (select cid from course where teacher_id = (select tid from teacher where tname='李平')) group by student_id);

23、查询所有选修了学号为2的同学选修过的一门或者多门课程的同学学号和姓名
select student.sid, sname
from student, score
where student.sid=score.student_id
and course_id in (select course_id from score where student_id=2)
group by student_id;

24、任课最多的老师中学生单科成绩最高的课程id、学生姓名和分数
select score.course_id, sname, num
from student, score,
-- 单科最高分 max_score
(select course_id, max(num) as maxnum
from score,
-- 任课最多的老师 max_course_teacher
(select teacher_id from course group by teacher_id order by count(teacher_id) desc limit 1) as max_course_teacher
where course_id in (select cid from course where teacher_id = max_course_teacher.teacher_id) group by course_id) as max_score
where student.sid=student_id
and max_score.course_id = score.course_id
and num = maxnum;

原文地址:https://www.cnblogs.com/trent-fzq/p/11241565.html

时间: 2024-11-07 17:09:08

MySql 练习 - 查询强化训练的相关文章

mysql子查询慢的问题

当你在用explain工具查看sql语句的执行计划时,若select_type 字段中出现"DEPENDENT SUBQUERY"时,你要注意了,你已经掉入了mysql子查询慢的"坑"...下面我们来看一个具体的例子 有这样一条查询语句: SELECT gid,COUNT(id) as count FROM shop_goods g1 WHERE status =0 and gid IN (SELECT gid FROM shop_goods g2 WHERE si

Mysql——子查询

子查询的位置: select 中.from 后.where 中.group by 和order by 中无实用意义. 子查询分为如下几类: 1,标量子查询:返回单一值的标量,最简单的形式. 2,列子查询:返回的结果集是 N 行一列. 3,行子查询:返回的结果集是一行 N 列. 4,表子查询:返回的结果集是 N 行 N 列. 可以使用的操作符:= > < >= <= <> ANY IN SOME ALL EXISTS 标量子查询:是指子查询返回的是单一值的标量,如一个数字

mysql 怎么查询出,分组后的总条数。。。也就是有多少组数。。。。怎么写

SELECT COUNT(*) AS 多少组数FROM( SELECT id FROM 表 GROUP BY id) subQuery;Mysql,有一个表含有以下字段,uid 发帖人id,title 发帖标题,tc 发帖内容,time 发帖时间,用一条语句算出昨天发帖书大于10的,一共有多少人? select count(*) from (select distinct startperson_id,count(startperson_id) as num from apphome_finan

Mysql慢查询日志脚本

#!/bin/bash LOG=/diskb/mysql/slowlog/   #定义日志存储路径 DATE=`date +"%Y-%m-%d"`   #定义时间参数 user=root                                 #填写MySQL账户信息 passwd=123456 mysql -u$user -p$passwd -e "set global slow_query_log=0" #停止mysql慢查询日志 mysql -u$us

mysql慢查询日志分析工具mysqlsla

一.介绍    mysqlsla是一个分析mysql慢日志的工具,可以分析出慢查询的原因,包括执行某条sql出现的次数及在slow log数据的百分比.执行时间.等待销的时间等. 公司的数据库有很多慢查询日志,导致的系统的负载很高,而mysql慢查询日志文件内容格式不太好看,经推荐使用mysqlsla:使用方便,操作简单. 二.安装mysqlsla 系统环境 CentOS release 6.6 (Final) 2.6.32-504.el6.x86_64 官网已经不能下载,所需要的文件已在百度云

MySQL 列子查询及 IN、ANY、SOME 和 ALL 操作符的使用

列子查询是指子查询返回的结果集是 N 行一列,该结果通常来自对表的某个字段查询返回. 一个列子查询的例子如下: SELECT * FROM article WHERE uid IN(SELECT uid FROM user WHERE status=1) 该例子在前文<MySQL 子查询subquery语法与用法实例>已有解释及数据实例,在此不再赘述. 列子查询中使用 IN.ANY.SOME 和 ALL 操作符 由于列子查询返回的结果集是 N 行一列,因此不能直接使用 = > <

Mysql慢查询日志过程

原创地址 :http://itlab.idcquan.com/linux/MYSQL/922126.html mysql慢查询日志对于跟踪有问题的查询非常有用,可以分析出代码实现中耗费资源的sql语句,对我们程序的优化有很高的参考.本篇主要将慢查询日志的开启,日志分析,这也是优化SQL程序的一般步骤中至关重要的一步. 1.mysql慢查询日志 打开mysql的慢查询日志很简单,只需要在mysql的配置文件里(windows系统是my.ini,linux系统是my.cnf)的[mysqld]下面加

MySQL 慢查询

简述: 分析MySQL语句查询性能的方法除了使用 EXPLAIN 输出执行计划,还可以让MySQL记录下查询 超过指定时间的语句,我们将超过指定时间的SQL语句查询称为“慢查询”. 它能记录下所有执行超过 long_query_time时间的SQL语句, 帮你找到执行慢的SQL,  方便我们对这些SQL进行优化. 在优化MySQL时,通常需要对数据库进行分析,常见的分析手段有 慢查询日志,EXPLAIN 分析查询, profiling分析 以及 show命令查询系统状态及系统变量,通过定位分析性

MySQL慢查询日志相关的配置和使用。

MySQL慢查询日志提供了超过指定时间阈值的查询信息,为性能优化提供了主要的参考依据,是一个非常实用的功能,MySQL慢查询日志的开启和配置非常简单,可以指定记录的文件(或者表),超过的时间阈值等就可以记录到慢sql了,实话讲,相比较sqlserver的trace或者扩展事件(虽然此二者的作用并非仅仅如此),MySQL的配置总是给人一种非常清爽的感觉. 1,慢查询日志的打开 正常情况下,只需要在配置文件中增加slow_query_log = 1配置,即打开慢查询日志,未指定slow_query_