Oracle SQL习题集

这篇博客提供了Oracle SQL的练习题,包括单表操作和多表查询两大类别,涵盖了学生、教师、课程和成绩等数据库表。习题涉及查询学生信息、教师数量、课程成绩比较、学生选课情况、课程平均分、及格率、子查询等多种复杂场景。同时,给出了每个问题的详细解答,展示了如何利用SQL进行高效的数据查询和分析。
摘要由CSDN通过智能技术生成

Oracle SQL 习题集

一、数据库环境

1、表结构

学生表

字段注释备注
sno学号主键
sname姓名
sage年龄

教师表

字段注释备注
tno教师ID主键
tname教师姓名

课程表

字段注释备注
cno课程号主键
cname课程名称主键
tno授课老师

成绩表

字段注释备注
sno学号主键
cno课程号
score成绩

2、建表SQL语句(Oracle)

建表SQL

CREATE TABLE student ( 
    sno VARCHAR2 ( 10 ) PRIMARY KEY, 
    sname VARCHAR2 ( 20 ), 
    sage number ( 2 ), 
    ssex VARCHAR2 ( 5 ) 
);
CREATE TABLE teacher ( 
    tno VARCHAR2 ( 10 ) PRIMARY KEY, 
    tname VARCHAR2 ( 20 ) 
);
CREATE TABLE course (
    cno VARCHAR2 ( 10 ),
    cname VARCHAR2 ( 20 ),
    tno VARCHAR2 ( 20 ),
    CONSTRAINT pk_course PRIMARY KEY ( cno, tno ) 
);
CREATE TABLE sc (
    sno VARCHAR2 ( 10 ),
    cno VARCHAR2 ( 10 ),
    score number ( 4, 2 ),
    CONSTRAINT pk_sc PRIMARY KEY ( sno, cno ) 
);

3、初始化数据SQL

/*******初始化学生表的数据******/ 
insert into student values ('s001','张三',23,'男'); 
insert into student values ('s002','李四',23,'男'); 
insert into student values ('s003','吴鹏',25,'男'); 
insert into student values ('s004','琴沁',20,'女'); 
insert into student values ('s005','王丽',20,'女'); 
insert into student values ('s006','李波',21,'男'); 
insert into student values ('s007','刘玉',21,'男'); 
insert into student values ('s008','萧蓉',21,'女'); 
insert into student values ('s009','陈萧晓',23,'女'); 
insert into student values ('s010','陈美',22,'女');
/******************初始化教师表***********************/ 
insert into teacher values ('t001', '刘阳'); 
insert into teacher values ('t002', '谌燕'); 
insert into teacher values ('t003', '胡明星');
/***************初始化课程表****************************/ 
insert into course values ('c001','J2SE','t002'); 
insert into course values ('c002','Java Web','t002'); 
insert into course values ('c003','SSH','t001'); 
insert into course values ('c004','Oracle','t001'); 
insert into course values ('c005','SQL SERVER 2005','t003'); 
insert into course values ('c006','C#','t003'); 
insert into course values ('c007','JavaScript','t002'); 
insert into course values ('c008','DIV+CSS','t001'); 
insert into course values ('c009','PHP','t003'); 
insert into course values ('c010','EJB3.0','t002');
/***************初始化成绩表***********************/ 
insert into sc values ('s001','c001',78.9); 
insert into sc values ('s002','c001',80.9); 
insert into sc values ('s003','c001',81.9); 
insert into sc values ('s004','c001',60.9); 
insert into sc values ('s001','c002',82.9); 
insert into sc values ('s002','c002',72.9); 
insert into sc values ('s003','c002',81.9); 
insert into sc values ('s001','c003','59');

二、习题集

1、单表操作

1.查询所有同学的学号、姓名、选课数、总成绩;
2.查询姓“张”的学生名单
3.查询姓“刘”的老师的个数;
4.98 年出生的学生名单(注:Student 表中sage 列的类型是 number)
5.向SC 表中插入⼀些记录,这些记录要求符合以下条件:
没有上过编号“c002”课程的同学学号、“c002”号课的平均成绩;
6.查询各科成绩最⾼和最低的分:以如下形式显示:课程 ID,最高分,最低分
7.查询男生、女生⼈数
8.查询同名同性学⽣名单,并统计同名人数

2、多表操作

连接查询

1.查询“c001”课程比“c002”课程成绩高的,所有学生的学号
2.查询没学过“谌燕”老师课的同学的学号、姓名
3.查询学过“c001”并且也学过编号“c002”课程的同学的学号、 姓名;
4.查询学过“谌燕”老师所教的所有课的同学的学号、姓名;
5.删除学习“谌燕”老师课的SC 表记录;
6.按各科平均成绩从低到高和及格率的百分数从高到低顺序
7.查询不同老师所教不同课程平均分从高到低显示
8.查询每门课程被选修的学生数
9.查询每门课程的平均成绩,结果按平均成绩升序排列,平均成绩相同时,按课程号降序排列
10.查询平均成绩大于85 的所有学生的学号、姓名和平均成绩
11.查询课程名称为“数据库”,且分数低于60 的学生姓名和分数
12.查询所有学生的选课情况
13.查询不及格的课程,并按课程号从大到小排列
14.查询课程编号为c001 且课程成绩在80 分以上的学生的学号和姓名;
15.查询各个课程及相应的选修人数
16.统计每门课程的学生选修人数(超过0人的课程才统计)。要求输出课程号和选修人数,查询结果按人数降序排列,若人数相同,按课程号升序排列
17.检索“c004”课程分数小于60,按分数降序排列的同学学号

子查询

1.查询平均成绩大于60 分的同学的学号和平均成绩
2.查询课程编号“c002”的成绩比课程编号“c001”课程低的所有 同学的学号、姓名
3.查询所有课程成绩小于60 分的同学的学号、姓名
4.查询没有学全所有课的同学的学号、姓名
5.查询至少有一门课与学号为“s001”的同学所学相同的同学的学号和姓名
6.查询至少学过学号为“s001”同学所有一门课的其他同学学号和姓名
7.把“SC”表中“谌燕”老师教的课的成绩都更改为此课程的平均成绩;
8.查询和“s001”号的同学学习的课程完全相同的其他同学学号和姓名;
9.统计各科成绩,各分数段人数:课程ID,课程名称,[100- 85],[85-70],[70-60],[ <60]
10.查询各科成绩前三名的记录:(不考虑成绩并列情况)
11.查询出只选修了⼀门课程的全部学生的学号和姓名
12.查询任何⼀门课程成绩在70 分以上的姓名、课程名称和分数;
13.求选了课程的学生人数
14.查询选修“谌燕”老师所授课程的学生中,成绩最高的学生姓名及其成绩
15.查询不同课程成绩相同的学生的学号、课程号、学生成绩
16.查询每门功课成绩最好的前两名
17.检索⾄少选修两门课程的学生学号
18.查询全部学生都选修的课程的课程号和课程名
19.查询没学过“谌燕”老师讲授的任⼀门课程的学生姓名
20.查询两门以上不及格课程的同学的学号及其平均成绩
21.删除“s002”同学的“c002”课程的成绩

三、SQL代码答案(Oracle版)

(由于题目过多,在编写的时候可能存在一些错误,欢迎各位读者在评论区批评讨论)

1、单表操作

/*1. 单表操作*/
/*查询所有同学的学号、姓名、选课数、总成绩;*/
select b.sname,a.* 
from (
     select sno,count(cno),sum(score) 
     from sc 
     group by sno
) a,
student b 
where a.sno = b.sno;
/*查询姓“张”的学生名单*/
select sname from student where sname like '张%';
/*查询姓“刘”的老师的个数;*/
select count(tname) from teacher where tname like '刘%';
/*98年出生的学生名单(注:Student 表中sage 列的类型是 number)*/
select sname from student where to_char(sysdate,'yyyy')-sage=1998;
/*向SC 表中插⼊⼀些记录,这些记录要求符合以下条件:
    没有上过编号“c002”课程的同学学号、“c002”号课的平均成绩;*/
insert into sc (sno,cno,score)
select distinct st.sno,sc.cno,(select avg(score)from sc where cno='c002')
from student st,sc
where not exists
(select * from sc where cno='c002' and sc.sno=st.sno) and sc.cno='c002';
/*查询各科成绩最高和最低的分:以如下形式显示:课程 ID,最高分,最低分*/
select cno 课程ID,max(score) 最高分,min(score) 最低分 from sc group by cno; 
/*查询男生、女生人数*/
select ssex,count(sno) from student group by ssex;
/*查询同名同性学生名单,并统计同名人数*/
select sname,count(*)from student group by sname having count(*)>1;

2、多表操作

连接查询
/*连接查询*/
--查询“c001”课程比“c002”课程成绩高的,所有学生的学号
select a.* 
from 
     (select * 
     from sc a 
     where a.cno='c001') a,
     (select * 
     from sc b 
     where b.cno='c002') b 
where a.sno=b.sno and a.score > b.score;
--查询没学过“谌燕”老师课的同学的学号、姓名
select sc.sno,student.sname
from sc,student
where sc.sno=student.sno and sc.cno not in(
      select distinct(sc.cno) 
      from sc,course
      where sc.cno=course.cno and course.tno=(
            select distinct(course.tno)
            from course,teacher
            where course.tno=teacher.tno 
            and teacher.tname='谌燕'
      )
);
--查询学过“c001”并且也学过编号“c002”课程的同学的学号、 姓名;
select st.sno,st.sname from sc a
join sc b on a.sno=b.sno
join student st
on st.sno=a.sno
where a.cno='c001' and b.cno='c002' and st.sno=a.sno;
--查询学过“谌燕”老师所教的所有课的同学的学号、姓名;!!!
select distinct(st.sno),st.sname 
from student st join sc s on st.sno=s.sno
join course c on s.cno=c.cno
join teacher t on c.tno=t.tno
where t.tname='谌燕';
--删除学习“谌燕”老师课的SC表记录;
delete from sc
where sc.cno in(
      select cno from course c
      left join teacher t on  c.tno=t.tno
      where t.tname='谌燕'
);
--按各科平均成绩从低到高和及格率的百分数从高到低顺序
select cno,avg(score),sum(case when score>=60 then 1 else 0 end)/count(*) as 及格率
from sc group by cno
order by avg(score),及格率 desc;
--查询不同老师所教不同课程平均分从高到低显示
select max(t.tno),max(t.tname),max(c.cno),max(c.cname),c.cno,avg(score) 
from sc , course c,teacher t
where sc.cno=c.cno and c.tno=t.tno
group by c.cno
order by avg(score) desc;
--查询每门课程被选修的学生数
select cno 课程号,count(sno) 选课人数 from sc group by cno;
--查询每门课程的平均成绩,结果按平均成绩升序排列,平均成绩相同时,按课程号降序排列
select cno 课程号,avg(score) from sc group by cno order by avg(score) asc,cno desc;
--查询平均成绩大于85 的所有学生的学号、姓名和平均成绩
select sc.sno,sname,avg(score) 
from student,sc 
where student.sno=sc.sno 
group by sc.sno,student.sname 
having avg(score)>85;
--查询课程名称为“数据库”,且分数低于60 的学生姓名和分数
select sname,score 
from student,sc,course
where student.sno=sc.sno 
and sc.cno=course.cno 
and couse.cname='数据库' 
and sc.score<60;
--查询所有学生的选课情况
select student.sno,student.sname,course.cname
from student,sc,course 
where student.sno=sc.sno 
and sc.cno=course.cno
order by sno asc; 
--查询不及格的课程,并按课程号从大到小排列
select sc.cno,course.cname
from sc,course
where sc.cno=course.cno
and score<60
order by cno desc;
--查询课程编号为c001 且课程成绩在80 分以上的学生的学号和姓名;
select student.sno,student.sname
from sc,student
where student.sno=sc.sno
and cno='c001'
and score>80;
--查询各个课程及相应的选修人数
select cno,count(sno) from sc group by cno;
--统计每门课程的学生选修人数(超过0人的课程才统计)。
--要求输出课程号和选修人数,查询结果按人数降序排列,若人数相同,按课程号升序排列
select cno,count(sno) 
from sc 
group by cno
having count(sno)>0
order by count(sno) desc,cno asc;
--检索“c004”课程分数小于60,按分数降序排列的同学学号
select sno from sc where cno='c004' and score<60 order by score desc;

子查询
/*子查询*/
--查询平均成绩大于60 分的同学的学号和平均成绩
select sno,avg(score)
from sc
having avg(score)>60
group by sno;
--查询课程编号“c002”的成绩比课程编号“c001”课程低的所有同学的学号、姓名
select student.sno,student.sname
from student
join sc a on student.sno=a.sno
join sc b on student.sno=b.sno
where a.cno='c002' 
and b.cno='c001' 
and a.score < b.score;
--查询所有课程成绩小于60分的同学的学号、姓名
select student.sno,student.sname
from student,sc
where student.sno=sc.sno
and score<60;
--查询没有学全所有课的同学的学号、姓名
select sno,sname
from student
where sno in(
      select sno
      from sc
      group by sno
      having count(cno)<(
            select count(distinct(cno))
            from course
      )
);
--查询至少有⼀门课与学号为“s001”的同学所学相同的同学的学号和姓名
select student.sno,student.sname 
from student,
(select distinct a.sno from(select * from sc) a,
(select * from sc where sc.sno='s001') b
where a.cno=b.cno) h
where student.sno=h.sno 
and student.sno<>'s001';
--查询至少学过学号为“s001”同学所有⼀门课的其他同学学号和姓名
select sc.sno,student.sname 
from sc
left join student
on student.sno=sc.sno
where sc.sno<>'s001'
and sc.cno in(
    select cno 
    from sc
    where sno='s001'
);
--把“SC”表中“谌燕”老师教的课的成绩都更改为此课程的平均成绩;
update sc c 
set score=(
    select avg(c.score) 
    from course a,teacher b
    where a.tno=b.tno
    and b.tname='谌燕'
    and a.cno=c.cno
    group by c.cno
)
where cno in(
      select cno 
      from course a,teacher b
      where a.tno=b.tno
      and b.tname='谌燕'
);
--查询和“s001”号的同学学习的课程完全相同的其他同学学号和姓名;
select* from sc where sno<>'s001'
minus(
        select* 
        from sc
        minus(
             select * 
             from sc 
             where sno='s001'
        )
)
--统计各科成绩,各分数段人数:课程ID,课程名称,[100- 85],[85-70],[70-60],[ <60]
select sc.cno 课程ID,
       (select cname from course where cno = sc.cno) 课程名称,
       (select count(1) from sc where sc.score between 85 and 100 and cno = sc.cno) "[100-85]",
       (select count(1) from sc where sc.score between 70 and 85 and cno = sc.cno)"[85-70]",
       (select count(1) from sc where sc.score between 60 and 70 and cno = sc.cno)"[70-60]",
       (select count(1) from sc where sc.score < 60 and cno = sc.cno)"[ <60]"
from sc;
--查询各科成绩前三名的记录:(不考虑成绩并列情况)
select * 
from(
       select sno,cno,score,row_number()
       over(
              partition by cno 
              order by score desc
       ) rn 
       from sc
    )
where rn<4
--查询出只选修了⼀门课程的全部学生的学号和姓名
select sc.sno,student.sname
from student
left join sc
on sc.sno=student.sno
group by student.sname,sc.sno 
having count(cno)=1;
--查询任何⼀门课程成绩在70分以上的姓名、课程名称和分数;
select student.sname,course.cname,sc.score 
from student,sc,course
where sc.sno=student.sno 
and sc.cno=course.cno 
and sc.score>70;
--求选了课程的学生人数
select count(distinct(sno)) from sc;
--查询选修“谌燕”老师所授课程的学生中,成绩最高的学生姓名及其成绩
select student.sname,score 
from student,sc ,course,teacher
where student.sno=sc.sno 
and sc.cno=course.cno 
and course.tno=teacher.tno
and teacher.tname='谌燕' 
and sc.score=(
    select max(score)
    from sc 
    where sc.cno=course.cno
);
--查询不同课程成绩相同的学生的学号、课程号、学生成绩
select a.*
from sc a,sc b
where a.score=b.score
and a.cno<>b.cno;
--查询每门功课成绩最好的前两名
select * from (
       select sno,cno,score,row_number()over(partition by cno order by score desc) my_rn 
       from sc t
)
where my_rn<=2;
--检索至少选修两门课程的学生学号
select sno
from sc
having count(cno)>2
group by sno;
--查询全部学生都选修的课程的课程号和课程名
select distinct(c.cno),c.cname 
from course,sc
where sc.cno=course.cno;
--查询没学过“谌燕”老师讲授的任⼀门课程的学生姓名
select student.sname 
from student
where student.sno not in(
      select distinct sc.sno 
      from sc,course,teacher
      where sc.cno=course.cno 
      and course.tno=teacher.tno 
      and teacher.tname='谌燕'
);
--查询两门以上不及格课程的同学的学号及其平均成绩
select sno,avg(score)
from sc
where sno in(
      select sno 
      from sc 
      where sc.score<60
      group by sno 
      having count(sno)>2
) 
group by sno;
--删除“s002”同学的“c002”课程的成绩
delete from sc where sno='s002' and cno='c002';
  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

逃离地球12138

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值