如有问题请及时指正
数据准备
- -- 1.学生表
- -- S# 学生编号,Sname 学生姓名,Sage 出生年月,Ssex 学生性别
- CREATE TABLE `Student` (
- `S#` varchar(10) NOT NULL,
- `Sname` varchar(100) NOT NULL,
- `Sage` datetime NOT NULL,
- `Ssex` varchar(10) NOT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
- insert into Student values('01' , '赵雷' , '1990-01-01' , '男');
- insert into Student values('02' , '钱电' , '1990-12-21' , '男');
- insert into Student values('03' , '孙风' , '1990-05-20' , '男');
- insert into Student values('04' , '李云' , '1990-08-06' , '男');
- insert into Student values('05' , '周梅' , '1991-12-01' , '女');
- insert into Student values('06' , '吴兰' , '1992-03-01' , '女');
- insert into Student values('07' , '郑竹' , '1989-07-01' , '女');
- insert into Student values('08' , '王菊' , '1990-01-20' , '女');
- -- 2.课程表
- -- C# --课程编号,Cname 课程名称,T# 教师编号
- CREATE TABLE `Course` (
- `C#` varchar(10) NOT NULL,
- `Cname` varchar(10) NOT NULL,
- `T#` varchar(10) NOT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
- insert into Course values('01' , '语文' , '02');
- insert into Course values('02' , '数学' , '01');
- insert into Course values('03' , '英语' , '03');
- -- 3.教师表
- -- T# 教师编号,Tname 教师姓名
- CREATE TABLE `Teacher` (
- `T#` varchar(10) NOT NULL,
- `Tname` varchar(10) NOT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
- insert into Teacher values('01' , '张三');
- insert into Teacher values('02' , '李四');
- insert into Teacher values('03' , '王五');
- -- 4.成绩表
- -- S# 学生编号,C# 课程编号,score 分数
- CREATE TABLE `SC` (
- `S#` varchar(10) NOT NULL,
- `C#` varchar(10) NOT NULL,
- `score` decimal(18,1) NOT NULL
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
- insert into SC values('01' , '01' , 80);
- insert into SC values('01' , '02' , 90);
- insert into SC values('01' , '03' , 99);
- insert into SC values('02' , '01' , 70);
- insert into SC values('02' , '02' , 60);
- insert into SC values('02' , '03' , 80);
- insert into SC values('03' , '01' , 80);
- insert into SC values('03' , '02' , 80);
- insert into SC values('03' , '03' , 80);
- insert into SC values('04' , '01' , 50);
- insert into SC values('04' , '02' , 30);
- insert into SC values('04' , '03' , 20);
- insert into SC values('05' , '01' , 76);
- insert into SC values('05' , '02' , 87);
- insert into SC values('06' , '01' , 31);
- insert into SC values('06' , '03' , 34);
- insert into SC values('07' , '02' , 89);
- insert into SC values('07' , '03' , 98);
复制代码 1. 查询" 01 "课程比" 02 "课程成绩高的学生的信息及课程分数
- -- 自连接
- SELECT s.`S#` ,s.`C#` ,s.score,s2.`C#` ,s2.score ,s3.Sname ,s3.Sage ,s3.Ssex
- from SC s ,SC s2,Student s3 where s.`C#` ='01' and s2.`C#` ='02'
- and s.`S#` = s2.`S#`
- and s.score > s2.score and s.`S#` = s3.`S#`;
- -- 左连接
- select A.*,B.`C#`,B.score,C.Sname ,C.Sage ,C.Ssex
- from Student C ,(select * from SC where `C#`='01')A
- left join(select * from SC where `C#`='02')B
- on A.`S#`=B.`S#`
- where A.score>B.score and C.`S#` = A.`S#`;
复制代码
1.1 查询同时存在" 01 "课程和" 02 "课程的情况
- -- 自连接
- SELECT * from SC s,SC s2 where s.`C#` ='01' and s2.`C#` ='02' and s.`S#` = s2.`S#`;
- -- 左连接
- SELECT * from (select * from SC where `C#`='01')A
- left join (select * from SC where `C#`='02')B on A.`S#`=B.`S#`
- where B.`S#` is not null;
复制代码
1.2 查询存在" 01 "课程但可能不存在" 02 "课程的情况(不存在时显示为 null )
- SELECT * FROM (select * from SC where `C#`='01') s
- LEFT JOIN (select * from SC where `C#`='02') s2
- on s.`S#` = s2.`S#`;
复制代码 1.3 查询不存在" 01 "课程但存在" 02 "课程的情况
- SELECT * from SC s where s.`C#` ='02'
- and s.`S#` not in(SELECT s2.`S#` FROM SC s2 where s2.`C#`='01');
复制代码 2. 查询平均成绩大于等于 60 分的同学的学生编号和学生姓名和平均成绩
- select A.`S#`,B.Sname,A.dc from(select `S#`,AVG(score)dc from SC group by `S#`)A
- left join Student B on A.`S#`=B.`S#` where A.dc>=60;
复制代码 3. 查询在 SC 表存在成绩的学生信息
- select * from Student where `S#` in (select distinct `S#` from SC);
复制代码 4. 查询所有同学的学生编号、学生姓名、选课总数、所有课程的总成绩(没成绩的显示为 null )
- select B.`S#`,B.Sname,A.选课总数,A.总成绩 from
- (select `S#`,COUNT(`C#`)选课总数,sum(score)总成绩 from SC group by `S#`)A
- right join Student B on A.`S#`=B.`S#`;
复制代码 4.1 查有成绩的学生信息
- select B.`S#`,B.Sname,A.选课总数,A.总成绩 from
- (select `S#`,COUNT(`C#`)选课总数,sum(score)总成绩 from SC group by `S#`)A
- LEFT join Student B on A.`S#`=B.`S#`;
复制代码 5. 查询「李」姓老师的数量
- select COUNT(*)李姓老师数量 from Teacher where Tname like '李%';
复制代码 6. 查询学过「张三」老师授课的同学的信息
- select * from Student s
- where s.`S#` in ( SELECT s2.`S#` from SC s2
- WHERE s2.`C#` IN (SELECT c.`C#` from Course c
- WHERE c.`T#` IN (SELECT t.`T#` from Teacher t
- WHERE t.Tname='张三')));
复制代码 7. 查询没有学全所有课程的同学的信息
- select * from Student
- where `S#` in(select `S#` from SC group by `S#` having COUNT(`C#`)<3);
复制代码 10. 查询没学过"张三"老师讲授的任一门课程的学生姓名
- select * from Student
- where `S#` in(select distinct `S#` from SC
- where `C#` in(select `C#` from SC where `S#`='01'));
复制代码 11. 查询两门及其以上不及格课程的同学的学号,姓名及其平均成绩
- select * from Student
- where `S#` in(select `S#` from SC where `C#` in(select distinct `C#` from SC where `S#`='01') and `S#`<>'01'
- group by `S#`
- having COUNT(`C#`)>=3)
复制代码 12. 检索" 01 "课程分数小于 60,按分数降序排列的学生信息
- select * from Student
- where `S#` not in(select `S#` from SC
- where `C#` in(select c.`C#` from Course c
- where c.`T#` in (SELECT t.`T#` from Teacher t where t.Tname='张三')));
复制代码 15. 按各科成绩进行排序,并显示排名, Score 重复时保留名次空缺
- select A.`S#`,A.Sname,B.平均成绩 from Student A right join
- (select `S#`,AVG(score)平均成绩 from SC where score<60 group by `S#` having COUNT(score)>=2)B
- on A.`S#`=B.`S#`;
复制代码 15.1 按各科成绩进行排序,并显示排名, Score 重复时合并名次
- SELECT * FROM Student s2
- where s2.`S#` in(SELECT s.`S#` from SC s
- where s.`C#` ='01' and s.score <60 ORDER by score desc);
复制代码 16. 查询学生的总成绩,并进行排名,总分重复时保留名次空缺
- select`S#`,max(case `C#` when '01' then score else 0 end)'01',
- MAX(case `C#` when '02' then score else 0 end)'02',
- MAX(case `C#` when '03' then score else 0 end)'03',AVG(score)平均分 from SC
- group by `S#` order by 平均分 desc;
复制代码 16.1 查询学生的总成绩,并进行排名,总分重复时不保留名次空缺
- select
- `C#` ,
- count(`S#`) as '选修人数',
- max(score) as '最高分',
- min(score) as '最低分',
- avg(score) as '平均分',
- concat( round( 100 * (sum( case when score >= 60 then 1 else 0 end ) / count(score) ), 2 ), '%' ) as '及格率',
- concat( round( 100 * (sum( case when score >= 70 and score < 80 then 1 else 0 end ) / count(score) ), 2 ), '%' ) as '中等率',
- concat( round( 100 * (sum( case when score >= 80 and score < 90 then 1 else 0 end ) / count(score) ), 2 ), '%' ) as '优良率',
- concat( round( 100 * (sum( case when score > 90 then 1 else 0 end ) / count(score) ), 2 ), '%' ) as '优秀率'
- from
- SC
- group by
- `C#`
- order by
- 选修人数 desc,
- `C#`;
复制代码 17. 统计各科成绩各分数段人数:课程编号,课程名称,[100-85],[85-70],[70-60],[60-0] 及所占百分比
[code]selectb.Cname ,a.*from(selects.`C#` ,sum(case when score >=85 and score =85 and score =70 and score =70 and score =60 and score =60 and score =0 and score =0 and score a.score) |