sql查询语句练习(解析版)
sql查询语句练习(解析版)BY DD
表情况
Student(S#,Sname,Sage,Ssex) 学生表
Course(C#,Cname,T#) 课程表
SC(S#,C#,score) 成绩表
Teacher(T#,Tname) 教师表
create table Student(S# varchar2(20),Sname varchar2(10),Sage int,Ssex varchar2(2)) ;
create table Course(C# varchar2(20),Cname varchar2(10),score varchar2(4)) ;
create table SC(S# varchar2(20),C# varchar2(20),score varchar2(4)) ;
create table Teacher(T# varchar2(20),Tname varchar2(10)) ;
insert into Student(S#,Sname,Sage,Ssex) values('1001','李五','15','男');
insert into Student(S#,Sname,Sage,Ssex) values('1002','张三','16','女');
insert into Student(S#,Sname,Sage,Ssex) values('1003','李四','15','女');
insert into Student(S#,Sname,Sage,Ssex) values('1004','陈二','14','男');
insert into Student(S#,Sname,Sage,Ssex) values('1005','小四','15','男');
问题:
1、查询“001”课程比“002”课程成绩高的所有学生的学号;
select a.S# from (select s#,score from SC where C#='001') a,(select s#,score
from SC where C#='002') b
where a.score>b.score and a.s#=b.s#;
解析:(select s#,score from SC where C#='001') a//从SC中查询C#=001的学生学号和分数,并定义为a表。
(select s#,score from SC where C#='002') b //从SC中查询C#=002的学生学号和分数,并定义为b表。
where a.score>b.score and a.s#=b.s# 条件,a表与b表中学号相同且分数比b中的高。
2、查询平均成绩大于60分的同学的学号和平均成绩;
select S#,avg(score) rom sc
group by S# having avg(score) >60;
解析: group by S# having avg(score) >60 这里是指平均分数大于60分的
学号。使用HAVING 子句原因是,WHERE 关键字无法与合计函数一起使用。
合计函数 (比如 SUM) 常常需要添加 GROUP BY 语句,根据一个或多个列对结果集进行分组。
3、查询所有同学的学号、姓名、选课数、总成绩;
select Student.S#,Student.Sname,count(SC.C#),sum(score)
from Student left Outer join SC on Student.S#=SC.S#
group by Student.S#,Sname
解析: Student left Outer join SC on Student.S#=SC.S# 左外连接,从student表返回所有的行放于左表中,从SC中返回的与左表匹配的行放于右表。Student表中有但SC表中没有的在右表中对应行留空。
group by Student.S#,Sname 以 Student.S#,Sname分组。
4、查询姓“李”的老师的个数;
select count(distinct(Tname))
from Teacher
where Tname like'李%';
解析:distinct(Tname) 在表中,可能会包含重复值。DISTINCT 用于返回唯一不同的值,这里的作用就是防止返回的Tname出现重复值。
where Tname like '李%' 模糊查询,"%"代表一或多个字符。
5、查询没学过“叶平”老师课的同学的学号、姓名;
Select Student.S#,Student.Sname
from Student
where S# not in(select distinct(SC.S#) from SC,Course,Teacher where SC.C#=Course.C# and Teacher.T#=Course.T# and Teacher.Tname='叶平');
解析:not in 题目是查询没学过“叶平”老师课的同学的学号、姓名,这里使用not in 就表示所要查询的S#不在后面的结果中。
(select distinct(SC.S#) from SC,Course,Teacher where SC.C#=Course.C# and Teacher.T#=Course.T# and Teacher.Tname='叶平');
这段语句是查询学过“叶平”老师课的同学的学号,这里其实查询的SC表,但可看到查的表是SC,Course,Teacher表,根据后面的条件语句,用来关联查询的。三个条件要同时满足,从而查询出“叶平”老师课的同学的学号
SC.C#=Course.C#,Teacher.T#=Course.T# 由于SC与Teacher并无直接联系,
这里将SC与Teacher表联系起来, Teacher.Tname='叶平':教师名为叶平,从而对应到SC表。
6、查询学过“001”并且也学过编号“002”课程的同学的学号、姓名;
select Student.S#,Student.Sname from Student,SC where Student.S#=SC.S# and SC.C#='001'and exists( Select*from SC as SC_2 where SC_2.S#=SC.S# and SC_2.C#='002');
解析:select Student.S#,Student.Sname from Student,SC where Student.S#=SC.S# and SC.C#='001' 这一句查询到的是学过“001”课程的同学的学号、姓名;
and exists( Select * from SC as SC_2 where SC_2.S#=SC.S# and SC_2.C#='002');
使用 exists关键字,用来判断是否存在的,当exists(查询)中的查询结果存在时则返回真,否则返回假。这里指查询学过002课程的同学,使用 and则将得到的结果与上一句匹配得上就都为真,返回结果。若不匹配,则不返回结果。
7、查询学过“叶平”老师所教的所有课的同学的学号、姓名;
select S#,Sname
from Student
where S# in(select S# from SC ,Course ,Teacher where SC.C#=Course.C# and Teacher.T#=Course.T# and Teacher.Tname='叶平'group by S# having count(SC.C#)=(select count(C#) from Course,Teacher where Teacher.T#=Course.T# and Tname='叶平'));
解析:这一道题与第5题接近,只是答案后面多了:group by S# having count(SC.C#)=(select count(C#) from Course,Teacher where Teacher.T#=Course.T# and Tname='叶平')。
sql语句查询结果取反having..的句式我们已经知道是因为WHERE 关键字无法与合计函数一起使用。合计函数 (比如 SUM) 常常需要添加 GROUP BY 语句,根据一个或多个列对结果集进行分组。
接下来就是理解count(SC.C#)=(select count(C#) from Course,Teacher where Teacher.T#=Course.T# and Tname='叶平')的含义了,count(SC.C#)是基于前面条件叶平老师在SC表中课程号的数量,select count(C#) from Course,Teacher where Teacher.T#=Course.T# and Tname='叶平',是从Course中查询叶平老师的所有课程号数量。
这里条件是说course中叶平老师的课程数与成绩表中的课程数相等。(SB我也不知为什么这么写)
8、查询课程编号“002”的成绩比课程编号“001”课程低的所有同学的学号、姓名;Select S#,Sname from (select Student.S#,Student.Sname,score ,(select score from SC SC_2 where SC_2.S#=Student.S# and SC_2.C#='002') score2
from Student,SC where Student.S#=SC.S# and C#='001') S_2 where score2 <score;< p="">
解析:1.select score as score2 from SC SC_2 where SC_2.S#=Student.S# and SC_2.C#='002';
2.select Student.S#,Student.Sname,score , score2 as S_2 from Student,SC where Student.S#=SC.S# and C#='001';
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论