用SQL语句进行数据库查询(复杂查询)

简介: 用SQL语句进行数据库查询(复杂查询)

本篇可当做例题练习,


1.查询比”林红”年纪大的男学生信息


语句:


select *
from Student
where Sex='男' and 
  year(Birth)-(select year(Birth)from Student--这里是需要告诉查询的表名,相当于嵌套
  where Sname='林红')<0


2.检索所有学生的选课信息,包括学号、姓名、课程名、成绩,性别.


语句:


select sc.sno,sname, course.Cno,Cname,Grade,Sex
--这里如果两个表中都有同一个属性,则需要标明在哪个表,如sc.sno
from student,sc,Course
where student.Sno=sc.Sno and Sc.Cno=course.Cno


3.查询已经选课的学生的学号、姓名、课程名、成绩.


语句:


select sc.sno ,sname , Cname , Grade
from student s , course c, sc
where s.sno=sc.sno and c.cno=sc.cno


4.查询选修了“C语言程序设计”的学生的学号与姓名


–a.用内连接查询


语句:


select sc.Sno,sname from student inner join sc on
student.Sno=sc.Sno inner join course on sc.Cno =course.cno
and Cname='C语言程序设计'


–b.用连接查询


语句:


select sc.Sno,sname from student,sc,course where
student .Sno=sc.Sno and sc.Cno =course.cno
and Cname='C语言程序设计'


–c.用子查询


语句:


select Sno,sname from student where Sno in
(select Sno from sc where Cno=
(select cno from course where Cname ='C语言程序设计'))


5.查询与”张虹”在同一个班级的学生学号、姓名、家庭住址


–a.用连接查询


语句:


select a.Sno,a.sname,a.Home_addr from student a,student b 
where a.Classno =b.Classno and b.Sname ='张虹' and a.Sname!='张虹'


–b.用子查询


语句:


select Sno,sname,Home_addr  from student where
classno=(select classno from student where sname='张虹')
and sname!='张虹'


6.查询其他班级中比”051”班所有学生年龄大的学生的学号、姓名


代码1:


select Sno,sname,Home_addr  from student where
classno!='051' and Birth<all (select Birth  from student where classno='051')


代码2:


select Sno,sname,Home_addr  from student where
classno!='051' and Birth<(select min(Birth)  from student where classno='051')


7.(选作)查询选修了全部课程的学生姓名。本题使用除运算的方法。


–由题意可得另一种语言,没有一个选了课的学生没有选course表里的课程。那么,我们需要两个NOT EXISTS表示双重否定;


语句:


select Sname from student
where not exists (
select * from course
where not exists (
select * from sc
where sno=student. sno
and cno=Course.cno))


8.查询至少选修了学生“20110002”选修的全部课程的学生的学号,姓名。


语句:


select Sno, Sname from student
where sno in (
select distinct sno from sc as sc1
where not exists (
select * from sc as sc2 where sc2.sno='20110002'
and not exists (
select * from sc as sc3 where sc3.Sno=sc1.sno and
sc3.cno=sC2.cno) )
)


9.检索选修了“高数”课且成绩至少高于选修课程号为“002"课程的学生的学号、课程号、成绩,并按成绩从高到低排列。


语句:


select sc.Sno, sc.cno , grade from sc where
grade >all(select grade from sc where cno='002' ) and
Cno= (select Cno
from course where Cname='高数')
order by Grade desc


10.检索选修了至少3门以上课程的学生的学号、总成绩(不统计不及格的成绩),并要求按总成绩降序排列。


语句:


select sno,SUM(grade) from sc where sno in (select Sno from sc group by sno
having COUNT(*)>=3) and Grade>=60 group by sno
order by SUM (grade) desc


11.检索多于3名学生选修的并以3结尾的课程号的平均成绩。


语句:


select avg(Grade) as 平均成绩
from sc
where Cno like '%3' group by cno
having count (Cno)>3


12.检索最高分与最低分之差大于5分的学生的学号、姓名、最高分、最底分。


select distinct sc.sno 学号,sname 姓名,
max (grade) as最高分,min (grade) as最低分
from student,sc
where sc.sno=student.Sno group by sc.sno , Sname
having max(grade) -min (grade) >5


13.创建一个表Student_other,结构同student,输入若干记录,部分记录和student表中的相同。


–创建过程:


create table student__other (
Sno char (8) primary key,
Sname varchar (8) not null,
sex char(2) not null,
Birth smalldatetime not null,
Classno char (3) not null,
Entrance_date smalldatetime not null,
Home_addr varchar (40) ,
sdept char (2) not null,
Postcode char (6)
)


随意插入几条student表中没有的数据:



–a.查询同时出现在Student表和student_other表中的记录


语句:


select * from student__other so ,student s
where so.sno=s.sno


----b.查询Student表和Student_other表中的全部记录


代码:


select * from student
union
select * from student__other
目录
相关文章
|
20天前
|
SQL 关系型数据库 MySQL
学成在线笔记+踩坑(3)——【内容模块】课程分类查询、课程增改删、课程计划增删改查,统一异常处理+JSR303校验
课程分类查询、课程新增、统一异常处理、统一封装结果类、JSR303校验、修改课程、查询课程计划、新增/修改课程计划
学成在线笔记+踩坑(3)——【内容模块】课程分类查询、课程增改删、课程计划增删改查,统一异常处理+JSR303校验
|
20天前
|
前端开发 应用服务中间件 API
|
21小时前
|
SQL 存储 移动开发
HTML5 Web SQL 数据库详解
Web SQL 数据库是 HTML5 中的一种本地存储技术,允许在浏览器中使用 SQL 语言操作本地数据,支持离线访问和事务处理,适用于缓存数据和小型应用。然而,其存储容量有限且仅部分现代浏览器支持,标准已不再积极维护,未来可能被 IndexedDB 和 localStorage 等技术取代。使用时需谨慎考虑兼容性和发展前景。
|
6天前
|
存储 关系型数据库 MySQL
查询服务器CPU、内存、磁盘、网络IO、队列、数据库占用空间等等信息
查询服务器CPU、内存、磁盘、网络IO、队列、数据库占用空间等等信息
45 5
|
3天前
|
SQL 资源调度 数据库
深入探究SQL查询语句执行过程
深入探究SQL查询语句执行过程
15 2
|
4天前
|
SQL Java
使用java在未知表字段情况下通过sql查询信息
使用java在未知表字段情况下通过sql查询信息
11 1
|
23天前
|
SQL 存储 数据管理
SQL Server数据库
SQL Server数据库
40 11
|
28天前
|
SQL 存储 缓存
高基数 GroupBy 在 SLS SQL 中的查询加速
本文详细介绍了SLS中的高基数GroupBy查询加速技术。
|
26天前
|
SQL 运维 程序员
一个功能丰富的SQL审核查询平台
一个功能丰富的SQL审核查询平台
|
8天前
|
SQL
SQL: 巧妙使用CASE WHEN实现查询
文章演示了如何利用SQL中的CASE WHEN语句来有效地进行条件性聚合查询,通过具体示例展示了CASE WHEN在统计分析中的应用技巧。
21 0
下一篇
无影云桌面