高级查询45道练习题

course表

grade表

score表

student表

teacher表

1. 查询Student表中的所有记录的Sname、Ssex和Class列。
select sname,ssex,class from student
2.查询教师所有的单位即不重复的Depart列。
select distinct depart from teacher
3. 查询Student表的所有记录。
select * from student
4.查询Score表中成绩在60到80之间的所有记录。
select * from score where degree between 60 and 80
5. 查询Score表中成绩为85,86或88的记录。
select * from score where degree in(85,86,88)
6.查询Student表中“95031”班或性别为“女”的同学记录。
select * from student where class=‘95031‘ or ssex=‘女‘
7. 以Class降序查询Student表的所有记录。
select * from student order by class desc
8. 以Cno升序、Degree降序查询Score表的所有记录。
select * from score order by cno,degree desc
9. 查询“95031”班的学生人数。
select count(*) from student where class=‘95031‘
10. 查询Score表中的最高分的学生学号和课程号。(子查询或者排序)
select sno,cno from score where degree = (select max(degree) from score)
select sno,cno from score order by degree desc limit 0,1
11. 查询每门课的平均成绩。
select cno,avg(degree) from score group by cno
12.查询Score表中至少有5名学生选修的并以3开头的课程的平均分数。
select avg(degree) from score where cno in(select cno from score group by cno having count(*)>=5) and cno like ‘3%‘
13.查询分数大于70,小于90的Sno列。
select sno from score where degree between 70 and 90
14.查询所有学生的Sname、Cno和Degree列。
select sname,cno,degree from student,score where student.sno = score.sno 
15.查询所有学生的Sno、Cname和Degree列。
select sno,cname,degree from score,course where score.cno = course.cno
16.查询所有学生的Sname、Cname和Degree列。
select sname,cname,degree from score,student,course where score.sno=student.sno and score.cno=course.cno
17. 查询“95033”班学生的平均分。
select avg(degree) from score where sno in(select sno from student where class=‘95033‘)
18. 假设使用如下命令建立了一个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 score,grade where score.degree between grade.low and grade.upp
19. 查询选修“3-105”课程的成绩高于“109”号同学成绩的所有同学的记录。
select * from score where cno=‘3-105‘ and degree>(select degree from score where cno=‘3-105‘ and sno=‘109‘)
20. 查询score中选学多门课程的同学中分数为非最高分成绩的记录。
最高分为所有学生的最高分
select * from score where sno in(select sno from score group by sno having count(*)>1) and degree<(select max(degree) from score)
   最高分为当前这门课程的最高分
select * from score a where sno in(select sno from score group by sno having count(*)>1) and degree<(select max(b.degree) from score b where b.cno = a.cno)

21.查询成绩高于学号为“109”、课程号为“3-105”的成绩的所有记录。
select * from score where degree>(select degree from score where sno=‘109‘ and cno=‘3-105‘)

22.查询和学号为108的同学同年出生的所有学生的Sno、Sname和Sbirthday列。
select sno,sname,sbirthday from student where YEAR(sbirthday) = (select YEAR(sbirthday) from student where sno=‘108‘)
YEAR(sbirthday)取生日中的年的函数   month(sbirthday)取月份   (类型必须是datetime)
23.查询“张旭“教师任课的学生成绩。
select * from score where cno in(select cno from course where tno in(select tno from teacher where tname=‘张旭‘))

24.查询选修某课程的同学人数多于5人的教师姓名。
select tname from teacher where tno in(select tno from course where cno in(select cno from score group by cno having count(*)>5))

25.查询95033班和95031班全体学生的记录。
select * from student where class in(‘95033‘,‘95031‘)

26.查询存在有85分以上成绩的课程Cno.
select cno from score where degree>85

27.查询出“计算机系“教师所教课程的成绩表。
select * from score where cno in(select cno from course where tno in(select tno from teacher where depart=‘计算机系‘))
28.查询“计算 机系”与“电子工程系“不同职称的教师的Tname和Prof。
select tname,prof from teacher where prof not in(select prof from teacher where depart=‘计算机系‘ and prof in(select prof from teacher where depart=‘电子工程系‘))

29. 查询选修编号为“3-105“课程且成绩至少高于选修编号为“3-245”的同学的Cno、Sno和Degree,并按Degree从高到低次序排序。
至少高于其中一个
select * from score where cno=‘3-105‘ and degree>any(select degree from score where cno=‘3-245‘)

30.查询选修编号为“3-105”且成绩高于选修编号为“3-245”课程的同学的Cno、Sno和Degree.
 高于所有的
select * from score where cno=‘3-105‘ and degree>all(select degree from score where cno=‘3-245‘)

31.查询所有教师和同学的name、sex和birthday.
select sname,ssex,sbirthday from student
union
select tname,tsex,tbirthday from teacher

32.查询所有“女”教师和“女”同学的name、sex和birthday.
select sname,ssex,sbirthday from student where ssex=‘女‘
union
select tname,tsex,tbirthday from teacher where tsex=‘女‘

33.查询成绩比该课程平均成绩低的同学的成绩表。
select * from score a where degree<(select avg(degree) from score b where b.cno=a.cno)

34.查询所有任课教师的Tname和Depart.
select tname,depart from teacher where tno in(select tno from course where cno in(select distinct cno from score))

35. 查询所有未讲课的教师的Tname和Depart. 
select tname,depart from teacher where tno not in(select tno from course where cno in(select distinct cno from score))

36.查询至少有2名男生的班号。
select * from student group by class having count(*)>1 and ssex=‘男‘

37.查询Student表中不姓“王”的同学记录。
select * from student where sname not like ‘王%‘;

38.查询Student表中每个学生的姓名和年龄。
select sname,YEAR(now())-YEAR(sbirthday) from student

39.查询Student表中最大和最小的Sbirthday日期值。
select max(sbirthday),min(sbirthday) from student

40.以班号和年龄从大到小的顺序查询Student表中的全部记录。
select * from student order by class desc,sbirthday

41.查询“男”教师及其所上的课程。
select * from teacher,course where teacher.tno = course.tno and tsex=‘男‘

42.查询最高分同学的Sno、Cno和Degree列。
select * from score where degree=(select max(degree) from score)

43.查询和“李军”同性别的所有同学的Sname.
select * from student where ssex=(select ssex from student where sname=‘李军‘)

44.查询和“李军”同性别并同班的同学Sname.
select * from student where ssex=(select ssex from student where sname=‘李军‘) and class=(select class from student where sname=‘李军‘)

45.查询所有选修“计算机导论”课程的“男”同学的成绩表。
select * from score where sno in(select sno from student where ssex=‘男‘) and cno in(select cno from course where cname=‘计算机导论‘)

原文地址:https://www.cnblogs.com/xiaohaihuaihuai/p/8194033.html

时间: 2024-11-08 15:37:15

高级查询45道练习题的相关文章

MYSQL 45道练习题

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

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 b

关于EXT gridPanel进行高级查询时load提交后台乱码以及其他方式更新store的方法及遇到的问题

Ext.data.Store  加载数据的几个方法及注意的事项 下面为定义的Store var ds_edisCommonUser = new Ext.data.uStore({ storeId:'edisCommonUser', model:'Edis_CommonUser', pageSize:itemPerPage, autoLoad:false, proxy:{ type:'ajax', method:'POST', url:'EdisCommonUser/getUsers.action

php 查询45题

表格代码 create table student ( sno varchar(20) primary key, sname varchar(20) not null, ssex varchar(20) not null, sbirthday datetime, class varchar(20) ) ; create table teacher ( tno varchar(20) primary key, tname varchar(20) not null, tsex varchar(20)

SQL Server T-SQL高级查询(转)

高级查询在数据库中用得是最频繁的,也是应用最广泛的.   ? 基本常用查询   --select select * from student; --all 查询所有 select all sex from student; --distinct 过滤重复 select distinct sex from student; --count 统计 select count(*) from student; select count(sex) from student; select count(di

LinQ To Objects 高级查询方法

什么是LinQ To Objects? 用一个例子解释,首先定义一个数组,查询数组中的最大值: int[] arr = { 123, 2, 3, 45, 654, 2324, 897, 56, 6554, 4, 3, 6, 8, 434 }; 旧的方法: int max=0 ; foreach(int a in arr) { if(a>=max) max=a; } Console.Write("最大值:"+ max); LinQ To Objects方法: Console.Wri

Linq——高级查询方法入门

一,Lambda表达式 lambda表达式刚开始用的时候还很不习惯,因为以前用惯了那种先foreach,再逐个判断的麻烦形式,刚开始用lambda都会在脑子里转一下,变成自己让自己舒服的格式,但是写过几行代码后,就会喜欢上这种形式,首先,它比较简洁,其次,和LINQ组合起来用感觉非常贴近SQL: 二,LINQ高级查询内容简介 LINQ的写法有两种,一种是语句形式,一种是方法形式,但是语句形式支持的功能貌似不足方法强大,所以,有些时候写语句形式的LINQ表达式还要加入方法.在编译的时候,也是将语句

07-Hive高级查询order by、group by

声明:未经本人允许,不得转载哦! 哈喽,大家好.这两天就要高考了,我原本是一名物理老师,这一届初高中的学生带完,估计就要开始找大数据岗位的工作了.目前掌握的是技能有java+linux++mysql+hadoop+hive+hbase,正在学习的是shell,计划2016年接着要学习的是scala+spark.祝我好运吧. 今天我们一起来学习的是[Hive高级查询group.order语法].话不多说,咱们开始吧. 1 Hive的高级查询操作有很多,主要有: group by #按K来把数据进行

数据库——基础(数据库操作,表格操作)——增加高级查询

笔记 LAMP:Linx(操作系统) A(阿帕奇)——网页的应用程序 M(Mysql):体积小,应用简单 P(PHP) 第一步:搭建网页环境——A\M\P WAMP:用WAMP搭建环境 DW:更好的显示 数据库的基本操作: 数据库——表结构——字段(列) 每一行数据成为一条数据(记录) 特点:关系型数据库,有严格的规范 1.必须有主键:能够唯一标识一条数据的字段 2 T-SQL:通用的数据库操作语句 自增长列code(主键列) ;连接键表 最后一个字段不加 ,#注释 创建表:create tab