MYSQL数据库45道练习题

--第一题查询Student表中的所有记录的Sname、Ssex和Class列。
select Sname,Ssex,Class from Student;
--第二题查询教师所有的单位即不重复的Depart列。
select distinct Depart from Teacher;
--第三题、 查询Student表的所有记录
select * from Student;
--第四题、 查询Score表中成绩在60到80之间的所有记录。
select * from Score where Degree between 60 and 80;
--第五题、 查询Score表中成绩为85,86或88的记录。
select * from Score where Degree = 85 or Degree = 86 or Degree = 88;
--第六题、 查询Student表中“95031”班或性别为“女”的同学记录。
select * from Student where Class = 95031 or Ssex = ‘女‘;
--第七题、 以Class降序查询Student表的所有记录。
select * from Student order by Class asc;
--第八题、 以Cno升序、Degree降序查询Score表的所有记录。
select * from Score order by Cno asc , Degree desc;
--第九题、 查询“95031”班的学生人数。
select count(*) from Student where Class = 95031;
--第十题、 查询Score表中的最高分的学生学号和课程号。(子查询或者排序)
select Sno,Cno from Score where Degree = (select max(Degree) from Score);
--第十一题、 查询每门课的平均成绩。
select avg(Degree) from Score where Cno=‘3-245‘;
select avg(Degree) from Score where Cno = ‘3-105‘;
select avg(Degree) from Score where Cno = ‘6-166‘;
select distinct Cno from Score;
select Cno,avg(Degree) from Score where select distinct Cno from Score;
--上面是错误历程-------------------------------------------------------------------------------------
select Cno,avg(Degree) from Score group by Cno;
--第十二题、查询Score表中至少有5名学生选修的并以3开头的课程的平均分数。
select CNO,avg(Degree) from Score where Cno like ‘3%‘ group by Cno having count(*)>4;
--先取首字母为3的 在分组 分组 完成后筛选条件为 Cno数量大于等于5;
--where 后面不能加聚合函数-----------------------------------------------------------------------------------------
--第十三题、查询分数大于70,小于90的Sno列。
select Sno,Degree from Score where Degree>70 and Degree<90;
--第十四题、查询所有学生的Sname、Cno和Degree列。
select Sname,Cno,Degree from Student join Score on Student.Sno = Score.Sno;
--方法二
select Student.Sname,Score.Cno,Score.Degree from Student,Score where Student.Sno = Score.Sno;
--第十五题、查询所有学生的Sno、Cname和Degree列。
select Sno,Cname,Degree from Course join Score on (Score.Cno = Course.Cno);
--第十六题、查询所有学生的Sname、Cname和Degree列。
select Sname,Cname,Degree from Student join Score on (Student.Sno = Score.Sno) join Course on (Course.Cno = Score.Cno);
--第十七题、 查询“95033”班学生的平均分。
select Class,avg(Degree) from Score join Student on(Student.Sno = Score.Sno) where Class = 95033;
--第十八题、 假设使用如下命令建立了一个grade表:
create table grade(low int(3),upp int(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‘)
--现查询所有同学的Sno、Cno和rank列。
select Sno,Cno,rank from grade join Score;
select Sno,Cno,rank from grade join Score on (Degree between low and upp);
--第十九题、 查询选修“3-105”课程的成绩高于“109”号同学成绩的所有同学的记录。
select Degree from Score where Sno = 109 and Cno = ‘3-105‘;

select * from Score where Degree > (select Degree from Score where Sno = 109 and Cno = ‘3-105‘) group by Sno having Cno = ‘3-105‘;

select Sno from Score where Cno = ‘3-105‘ and Degree > (select max(Degree) from Score where Sno = 109 and Cno = ‘3-105‘);

--第二十题、查询score中选学多门课程的同学中分数为非最高分成绩的记录。
select Sno from Score group by Sno having count(Cno)>1--选多门课同学的学号
select max(Degree) from Score--最高分
select * from Score where Degree < (select max(Degree) from Score)--小于最高分的学生信息
--选取选修多门课程且非最高成绩的学生学号
select sno from Score where Degree < (select max(Degree) from Score) group by Sno having count(Cno)>1;
--该学号所有信息
select * from Score where sno in (select sno from Score where Degree < (select max(Degree) from Score) group by Sno having count(Cno)>1)
--第二十一题、 查询成绩高于学号为“109”、课程号为“3-105”的成绩的所有记录。
select * from Score where Degree > (select max(Degree) from Score where Sno = 109) and Cno = ‘3-105‘;
--第二十二题、查询和学号为108的同学同年出生的所有学生的Sno、Sname和Sbirthday列。

select Sno,Sname,Sbirthday from Student where year(Sbirthday) = (select year(Sbirthday) from Student where Sno = 107);

--第二十三题、查询“张旭“教师任课的学生成绩。
select Tno from Teacher where Tname = ‘张旭‘
select Cno from Course where Tno = (select Tno from Teacher where Tname = ‘张旭‘)
select Degree from Score where Cno = (select Cno from Course where Tno = (select Tno from Teacher where Tname = ‘张旭‘))
--第二十四题、查询选修某课程的同学人数多于5人的教师姓名。
select Cno from Score group by Cno having count(Cno)>5
select Tno from Course where Cno in (select Cno from Score group by Cno having count(Cno)>5)
select Tname from Teacher where Tno in (select Tno from Course where Cno in (select Cno from Score group by Cno having count(Cno)>5))

--第二十五题、查询95033班和95031班全体学生的记录。

select * from Student where class = 95033 or class = 95031

--第二十六题、 查询存在有85分以上成绩的课程Cno.

select distinct Cno from Score where Degree > 85

--第二十七题、查询出“计算机系“教师所教课程的成绩表。

select Tno from Teacher where Depart = ‘计算机系‘
select Cno from Course where Tno in (select Tno from Teacher where Depart = ‘计算机系‘)
select * from Score where Cno in (select Cno from Course where Tno in (select Tno from Teacher where Depart = ‘计算机系‘))

--第二十八题、查询“计算 机系”与“电子工程系“不同职称的教师的Tname和Prof。

select Tname,Prof from Teacher where Prof in (select Prof from Teacher where Depart = ‘计算机系‘ or Depart = ‘电子工程系‘ group by Prof having count(Prof) = 1)
--select Prof from Teacher where Depart = ‘计算机系‘ or Depart = ‘电子工程系‘ group by Prof having count(Prof) = 1

--第二十九题、查询选修编号为“3-105“课程且成绩至少高于选修编号为“3-245”的同学的Cno、Sno和Degree,并按Degree从高到低次序排序。

select Cno,Sno,Degree from Score where Cno = ‘3-105‘ and Degree >= (select max(Degree) from Score where Cno = ‘3-245‘)
order by Degree asc

--第三十题、查询选修编号为“3-105”且成绩高于选修编号为“3-245”课程的同学的Cno、Sno和Degree.
select Cno,Sno,Degree from Score where Cno = ‘3-105‘ and Degree >= (select max(Degree) from Score where Cno = ‘3-245‘)

--第三十一题、 查询所有教师和同学的name、sex和birthday.

select Tname,Tsex,Tbirthday from Teacher union select Sname,Ssex,Sbirthday from Student

--第三十二题、查询所有“女”教师和“女”同学的name、sex和birthday.

select Tname,Tsex,Tbirthday from Teacher where Tsex = ‘女‘ union select Sname,Ssex,Sbirthday from Student where Ssex = ‘女‘

--第三十三题、 查询成绩比该课程平均成绩低的同学的成绩表。

select Cno,avg(Degree) from Score group by Cno;
select * from Score join (select Cno as Pno,avg(Degree) as pj from Score group by Pno) as pjb on (Score.Cno = pjb.Pno)
select * from Score join (select Cno as Pno,avg(Degree) as pj from Score group by Pno) as pjb on (Score.Cno = pjb.Pno)
where Degree < pj;

--第三十四题、 查询所有任课教师的Tname和Depart.

select * from Score group by Cno

select distinct Tname,Depart from Score join Course on Course.Cno = Score.Cno join Teacher on Teacher.Tno = Course.Tno where Course.Cno in
(select Cno from Score group by Cno)

--第三十五题、 查询所有未讲课的教师的Tname和Depart.
select Cno from Score group by Cno
select Tno from Course where Cno not in (select Cno from Score group by Cno)
select Tname,Depart from Teacher where Tno in (select Tno from Course where Cno not in (select Cno from Score group by Cno))

--第三十六题、查询至少有2名男生的班号。

select * from Student group by Class having count(Ssex) > 1 and Ssex = ‘男‘
select Class from Student where Sno in (select Sno from Student group by Class having count(Ssex) > 1 and Ssex = ‘男‘)

--第三十七题、查询Student表中不姓“王”的同学记录。

select * from Student where Sname not in (select Sname from Student where Sname like ‘李%‘)

--第三十八题、查询Student表中不姓“王”的同学记录。

select sname from Student where Sname not like ‘王%‘;

-- 第三十九题、查询Student表中最大和最小的Sbirthday日期值。

select MAX(sbirthday) as ‘最大值‘,MIN(sbirthday)‘最小值‘ from Student

-- 第四十题、以班号和年龄从大到小的顺序查询Student表中的全部记录。

select class,sbirthday from Student order by Class desc,Sbirthday asc

-- 第四十一题、查询“男”教师及其所上的课程。

select cname from course where tno in(select tno from teacher where tsex=’男’)

select tname,cname from teacher ,course where teacher.tno=course.tno and tsex=‘男‘

-- 第四十二题、查询最高分同学的Sno、Cno和Degree列。

(1)select * from score where Degree = (select max(Degree) from score)

(2)select top 1 * from score order by degree desc

-- 第四十三题、查询和“李军”同性别的所有同学的Sname.

select sname from Student where Ssex=(select Ssex from Student where Sname=‘李军‘)

-- 第四十四题、查询和“李军”同性别并同班的同学Sname.

select sname from Student where Ssex=(select Ssex from Student where Sname=‘李军‘)and class=(select Class from Student where Sname=‘李军‘);

-- 第四十五题、查询所有选修“计算机导论”课程的“男”同学的成绩表。

select Degree from score where Sno in(select Sno from student where Ssex=‘1‘) and Cno in (select Cno from course where Cname = ‘计算机导论‘);

时间: 2024-10-24 13:30:08

MYSQL数据库45道练习题的相关文章

MYSQL 45道练习题

学生表(Student).课程表(Course).成绩表(Score)以及教师信息表(Teacher).四个表的结构分别如表1-1的表(一)~表(四)所示,数据如表1-2的表(一)~表(四)所示.用SQL语句创建四个表并完成相关题目. 表1-1数据库的表结构 表(一)Student (学生表)                         属性名 数据类型 可否为空 含 义 Sno varchar (20) 否 学号(主码) Sname varchar (20) 否 学生姓名 Ssex var

高级查询45道练习题

course表 grade表 score表 student表 teacher表 1. 查询Student表中的所有记录的Sname.Ssex和Class列.select sname,ssex,class from student2.查询教师所有的单位即不重复的Depart列.select distinct depart from teacher3. 查询Student表的所有记录.select * from student4.查询Score表中成绩在60到80之间的所有记录.select * f

mysql数据库的相关练习题及答案

表结构示意图: 表结构创建语句: class表创建语句 create table class(cid int not null auto_increment primary key, caption varchar(32) not null)engine=innodb default charset=utf8; student表创建语句 create table student( -> sid int not null auto_increment primary key, -> sname

用Redis作为Mysql数据库的缓存【转】

用Redis作Mysql数据库缓存,必须解决2个问题.首先,应该确定用何种数据结构存储来自Mysql的数据:在确定数据结构之后,还要考虑用什么标识作为该数据结构的键. 直观上看,Mysql中的数据都是按表存储的:更微观地看,这些表都是按行存储的.每执行一次select查询,Mysql都会返回一个结果集,这个结果集由若干行组成.所以,一个自然而然的想法就是在Redis中找到一种对应于Mysql行的数据结构.Redis中提供了五种基本数据结构,即字符串(string).列表(list).哈希(has

MyEclipse通过JDBC连接MySQL数据库基本介绍

转载自:http://www.jb51.net/article/31876.htm 1.前提是MyEclipse已经能正常开发Java工程 2.安装MySQL 个人使用的是版本是 mysql-5.0.22-win32.zip 网址:http://www.mysql.com/downloads/mysql/#downloads 3.下载JDBC驱动 个人使用的是 mysql-connector-java-5.1.22.zip,所需要的就是解压缩之后其中的 mysql-connector-java-

Java小项目之Login界面理解MVC(MySQL数据库基本操作)

说真的,第一次看到MVC时候的感觉就和看到面向对象编程一样,感觉很方.之后慢慢的写了一些代码,在理解面向对象编程的同时也看到了MVC,虽然现在还是用不到,但是我觉得还是有些了解的好. 先谈谈MVC:模型(model):程序员编写程序应有的功能(实现算法等等).数据库专家进行数据管理和数据库设计(可以实现具体的功能).  视图(view):设计界面. 控制(Controller):处理事务. 很多地方可能我理解的不是很到位.只是能写出来一个大概,后续我还会更新.又重新查了一遍资料,感觉又开始有一种

linux 设置mysql 数据库编码utf8

转载地址 http://www.linuxidc.com/Linux/2015-08/121676.htm 在MySQL数据库中, 当插入数据无法支持中文时, 可将该数据库的编码集设置为utf8, 故在创建数据库时, 将数据库编码集及其他字符编码设置为utf8. 如果之前创建的数据库的数据库编码集不为utf8, 可以进行如下设置: mysql> alter database 数据库名 character set utf8; 或删除原有旧的数据库, 1117.www.qixoo.qixoo.com

【转】连接MySQL数据库(android,php,MySQL)

管理MySQL数据库最简单和最便利的方式是PHP脚本.运行PHP脚本使用HTTP协议和android系统连接.我们以JSON格式编码数据,因为Android和PHP都有现成的处理JSON函数. 下面示例代码,根据给定的条件从数据库读取数据,转换为JSON数据.通过HTTP协议传给android,android解析JSON数据. 定义在MySQL有以下表,并有一些数据 1 CREATE TABLE `people` ( 2 `id` INT NOT NULL AUTO_INCREMENT PRIM

Mysqldb连接Mysql数据库(转)

python操作mysql数据库 Python 标准数据库接口为 Python DB-API,Python DB-API为开发人员提供了数据库应用编程接口. Python 数据库接口支持非常多的数据库,你可以选择适合你项目的数据库: GadFly mSQL MySQL PostgreSQL Microsoft SQL Server 2000 Informix Interbase Oracle Sybase 你可以访问Python数据库接口及API查看详细的支持数据库列表. 不同的数据库你需要下载