1.学生表
Student(SID,Sname,Sage,Ssex) --SID 学生编号,Sname 学生姓名,Sage 出生年月,Ssex 学生性别

2.课程表

Course(CID,Cname,TID) --CID --课程编号,Cname 课程名称,TID 教师编号

3.教师表

Teacher(TID,Tname) --TID 教师编号,Tname 教师姓名

4.成绩表

SC(SID,CID,score) --SID 学生编号,CID 课程编号,score 分数

添加测试数据
1.学生表

create table Student(SID varchar(10),Sname nvarchar(10),Sage datetime,Ssex varchar(10));

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.课程表

create table Course(CID varchar(10),Cname nvarchar(10),TID varchar(10));

insert into Course values('01' , '语文' , '02');

insert into Course values('02' , '数学' , '01');

insert into Course values('03' , '英语' , '03');

3.教师表

create table Teacher(TID varchar(10),Tname nvarchar(10));

insert into Teacher values('01' , '张三');

insert into Teacher values('02' , '李四');

insert into Teacher values('03' , '王五');

4.成绩表

create table SC(SID varchar(10),CID varchar(10),score decimal(18,1));

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"课程成绩高的学生的 信息及课程分数--1.1、查询同时存在"01"课程和"02"课程的情况

select a.* , b.score 课程01的分数,c.score 课程02的分数 from Student a , SC b , SC c

where a.SID = b.SID and a.SID = c.SID and b.CID = '01' and c.CID = '02' and b.score > c.score;

--1.2、存在"01"课程但可能不存在"02"课程的情况(不存在时显示为null)

select a.* , b.score 课程01的分数,c.score 课程02的分数 from Student a

left join SC b on a.SID = b.SID and b.CID = '01'

left join SC c on a.SID = c.SID and c.CID = '02'

where b.score > ifnull(c.score,0);
此语句中student表为左表
ifnull(a,b):若a不为null则返回a,否则返回b

--3、查询平均成绩大于等于60分的同学的学生编号和学生姓名和平均成绩
两者道理相同
我的方法:
select a.sid, a.sname, avg(b.score)
from student a,sc b
where a.sid = b.sid group by a.sid having avg(b.score) >= 60;
答案的方法:
select a.SID , a.Sname , cast(avg(b.score) as decimal(18,2)) avg_score

from Student a , sc b

where a.SID = b.SID

group by a.SID , a.Sname

having cast(avg(b.score) as decimal(18,2)) >= 60

order by a.SID

Cast(字段名 as 转换的类型 )
cast(a as b):将a字段的值转换为b类型

--4.2、查询在sc表中不存在成绩的学生信息的SQL语句。(此处的不存在成绩指的是选了课之后没有成绩的同学,而不是为选课的同学,容易误写为
select *
from student
where sid
not in (select distinct sid from sc);)
实际是查询成绩为空的同学如下:
select a.* from student a where a.sid in (select sc.sid from sc where ifnull(sc.score,0) = 0);

--5、查询所有同学的学生编号、学生姓名、选课总数、所有课程的总成绩--5.1、查询所有有成绩的SQL。

select a.SID 学生编号 , a.Sname 学生姓名 , count(b.CID) 选课总数, sum(score) 所有课程的总成绩

from Student a , SC b

where a.SID = b.SID

group by a.SID,a.Sname

order by a.SID

--5.2、查询所有(包括有成绩和无成绩)的SQL。

select a.SID 学生编号 , a.Sname 学生姓名 , count(b.CID) 选课总数, sum(score) 所有课程的总成绩

from Student a left join SC b

on a.SID = b.SID

group by a.SID,a.Sname

order by a.SID

--7、查询学过"张三"老师授课的同学的信息(此语句中使用distinct是因为张三老师教过不只一门课)

select distinct Student.* from Student , SC , Course , Teacher

where Student.SID = SC.SID and SC.CID = Course.CID and Course.TID = Teacher.TID and Teacher.Tname = '张三'

order by Student.SID

--8、查询没学过"张三"老师授课的同学的信息

select m.* from Student m where SID not in (select distinct SC.SID from SC , Course , Teacher where SC.CID = Course.CID and Course.TID = Teacher.TID and Teacher.Tname = '张三') order by m.SID

--9、查询学过编号为"01"并且也学过编号为"02"的课程的同学的信息
我的方法:
select *
from student
where sid in (select sid from sc where cid = '01')
and sid in (select sid from sc where cid = '02');

--方法1

select Student.* from Student , SC where Student.SID = SC.SID and SC.CID = '01' and exists (Select 1 from SC SC_2 where SC_2.SID = SC.SID and SC_2.CID = '02') order by Student.SID

--方法2

select Student.* from Student , SC where Student.SID = SC.SID and SC.CID = '02' and exists (Select 1 from SC SC_2 where SC_2.SID = SC.SID and SC_2.CID = '01') order by Student.SID

--方法3

select m.* from Student m where SID in

(

select SID from

(

select distinct SID from SC where CID = '01'

union all

select distinct SID from SC where CID = '02'

) t group by SID having count(1) = 2

)

order by m.SID

--10、查询学过编号为"01"但是没有学过编号为"02"的课程的同学的信息
我的方法1

select student.*
from student where student.sid in(select sid from sc where cid = '01' and sid not in (select sid from sc where cid = '02'));
我的方法2
select *
from student
where sid in (select sid from sc where cid = '01')
and sid not in (select sid from sc where cid = '02');

--方法1

select Student.* from Student , SC where Student.SID = SC.SID and SC.CID = '01' and not exists (Select 1 from SC SC_2 where SC_2.SID = SC.SID and SC_2.CID = '02') order by Student.SID

--方法2

select Student.* from Student , SC where Student.SID = SC.SID and SC.CID = '01' and Student.SID not in (Select SC_2.SID from SC SC_2 where SC_2.SID = SC.SID and SC_2.CID = '02') order by Student.SID

--11、查询没有学全所有课程的同学的信息
我的方法1:
select
a.*
from student a,sc b
where a.sid = b.sid
group by a.sid having count(a.sid) < (select count(*) from course);
我的方法2:
select *
from student
where sid in (select sid from sc group by sid having count(*) < (select count(*) from course));
--11.1、

select Student.*

from Student , SC

where Student.SID = SC.SID

group by Student.SID , Student.Sname , Student.Sage , Student.Ssex having count(CID) < (select count(CID) from Course)

--11.2

select Student.*

from Student left join SC

on Student.SID = SC.SID

group by Student.SID , Student.Sname , Student.Sage , Student.Ssex having count(CID) < (select count(CID) from Course)

--12、查询至少有一门课与学号为"01"的同学所学相同的同学的信息
我的方法1:
select distinct student.*
from student , sc
where student.sid = sc.sid
and student.sid != '01'
and sc.cid
in (select cid from sc where sid = '01');

select distinct Student.* from Student , SC where Student.SID = SC.SID and SC.CID in (select CID from SC where SID = '01') and Student.SID <> '01'

--13、查询和"01"号的同学学习的课程完全相同的其他同学的信息(答案不对)
select Student.* from Student where SID in

(select distinct SC.SID from SC where SID <> '01' and SC.CID in (select distinct CID from SC where SID = '01')

group by SC.SID having count(1) = (select count(1) from SC where SID='01'))
--13、1 查询和"01"号的同学学习的课程数相同的其他同学的信息

select student.* from student where student.sid in(
select a.sid
from sc a where a.sid != '01' group by a.sid having count(a.sid) = (select count(*) from sc where sid= '01'));

--14、查询没学过"张三"老师讲授的任一门课程的学生姓名(注意此处应该使用distinct,因为张三老师可能教不只一门课)
方法1:
select student.sname
from student
where sid
in (select sid from sc
where cid
not in (select course.cid from course,teacher where course.tid = teacher.tid and teacher.tname = '张三'));

方法2:select student.* from student where student.SID not in

(select distinct sc.SID from sc , course , teacher where sc.CID = course.CID and course.TID = teacher.TID and teacher.tname = '张三')

order by student.SID

--15、查询两门及其以上不及格课程的同学的学号,姓名及其平均成绩(易错题)
注意此处要使用最后面的group by 否则显示的是所有学生总成绩的平均值

select student.sid,student.sname,avg(sc.score)
from student,sc
where student.sid = sc.sid
and student.sid in (select distinct sid from sc where score < 60 group by sid having count(*) >= 2) group by student.sid;

select student.SID , student.sname , cast(avg(score) as decimal(18,2)) avg_score from student , sc

where student.SID = SC.SID and student.SID in (select SID from SC where score < 60 group by SID having count(1) >= 2)

group by student.SID , student.sname

--16、检索"01"课程分数小于60,按分数降序排列的学生信息

select student.* , sc.CID , sc.score from student , sc

where student.SID = SC.SID and sc.score < 60 and sc.CID = '01'

order by sc.score desc

--17、按平均成绩从高到低显示所有学生的所有课程的成绩以及平均成绩

注意:
错误认识:
以前认为要把和两张表都有关联的中间表放在关联语句的中间(否则返回结果不一致),如下语句:先写的是student表,然后连接sc表,最后是course表。sc表在中间
实际原因是:不是一定要把与其他表关联的表放在中间,而是左连接会显示左表的全部内容,谁作为左表才是显示结果的关键,因此会出现左表不同显示结果不同

select a.SID 学生编号 , a.Sname 学生姓名 ,

max(case c.Cname when '语文' then b.score else null end) 语文 ,

max(case c.Cname when '数学' then b.score else null end) 数学 ,

max(case c.Cname when '英语' then b.score else null end) 英语 ,
max(case c.cname when '政治' then b.score else null end) 政治,

cast(avg(b.score) as decimal(18,2)) 平均分

from Student a

left join SC b on a.SID = b.SID

left join Course c on b.CID = c.CID

group by a.SID , a.Sname

order by 平均分 desc;

--18、查询各科成绩最高分、最低分和平均分:以如下形式显示:课程ID,课程name,最高分,最低分,平均分,及格率,中等率,优良率,优秀率

--及格为>=60,中等为:70-80,优良为:80-90,优秀为:>=90

注意此语句中虽然每个课程的总人数(即(select count(1) from SC where CID = m.CID) as decimal(18,2)语句)用到过多次,但是不能给其在第一次中进行命名,用到下一次中,会产生语法错误。
试验如下(cast((select count(1) from SC where CID = m.CID and score >= 60)*100.0 / ((select count(1) from SC where CID = m.CID) as decimal(18,2) lv)) 及格率 ,
cast((select count(1) from SC where CID = m.CID and score >= 70 and score < 80 )*100.0 / lv) 中等率 ,),报语法错误。

--方法1

select m.CID 课程编号 , m.Cname 课程名称 ,

max(n.score) 最高分 ,

min(n.score) 最低分 ,

cast(avg(n.score) as decimal(18,2)) 平均分 ,

cast((select count(1) from SC where CID = m.CID and score >= 60)*100.0 / (select count(1) from SC where CID = m.CID) as decimal(18,2)) 及格率 ,

cast((select count(1) from SC where CID = m.CID and score >= 70 and score < 80 )*100.0 / (select count(1) from SC where CID = m.CID) as decimal(18,2)) 中等率 ,

cast((select count(1) from SC where CID = m.CID and score >= 80 and score < 90 )*100.0 / (select count(1) from SC where CID = m.CID) as decimal(18,2)) 优良率 ,

cast((select count(1) from SC where CID = m.CID and score >= 90)*100.0 / (select count(1) from SC where CID = m.CID) as decimal(18,2)) 优秀率

from Course m , SC n

where m.CID = n.CID

group by m.CID , m.Cname

order by m.CID;

--方法2

select m.CID 课程编号 , m.Cname 课程名称 ,

(select max(score) from SC where CID = m.CID) 最高分 ,

(select min(score) from SC where CID = m.CID) 最低分 ,

(select cast(avg(score) as decimal(18,2)) from SC where CID = m.CID) 平均分 ,

cast((select count(1) from SC where CID = m.CID and score >= 60)*100.0 / (select count(1) from SC where CID = m.CID) as decimal(18,2)) 及格率,

cast((select count(1) from SC where CID = m.CID and score >= 70 and score < 80 )*100.0 / (select count(1) from SC where CID = m.CID) as decimal(18,2)) 中等率 ,

cast((select count(1) from SC where CID = m.CID and score >= 80 and score < 90 )*100.0 / (select count(1) from SC where CID = m.CID) as decimal(18,2)) 优良率 ,

cast((select count(1) from SC where CID = m.CID and score >= 90)*100.0 / (select count(1) from SC where CID = m.CID) as decimal(18,2)) 优秀率

from Course m

order by m.CID;

--20、查询学生的总成绩并进行排名

select m.SID 学生编号 ,

m.Sname 学生姓名 ,

ifnull(sum(score),0) 总成绩

from Student m left join SC n on m.SID = n.SID

group by m.SID , m.Sname

order by 总成绩 desc;

SQL回顾1的更多相关文章

  1. 经典SQL回顾之晋级篇

    上篇博文在说SQL基础的时候,有一个地方有点误导大家,文中说到SQL 中的substring()和C#中的substring()相同,这有点歧义.基本原理虽然相同,但是有一点很不一样,就是C#中索引是 ...

  2. SQL回顾

    数据库的本质是一种特殊的文件 数据库是由数据表组成的,数据表是真正存储数据的 数据库客户端-->SQL语句-->数据库服务器-->数据库文件 表与表之间存在关联的数据库称为关系型数据 ...

  3. R7—左右内全连接详解

    在SQL查询中,经常会用到左连接.右连接.内连接.全连接,那么在R中如何实现这些功能,今天来讲一讲! SQL回顾 原理 # 连接可分为以下几类: 内连接.(典型的连接运算,使用像   =   或   ...

  4. SQL Server-表表达式基础回顾(二十四)

    前言 从这一节开始我们开始进入表表达式章节的学习,Microsoft SQL Server支持4种类型的表表达式:派生表.公用表表达式(CTE).视图.内嵌表值函数(TVF).简短的内容,深入的理解, ...

  5. sql 中的Bulk和C# 中的SqlBulkCopy批量插入数据 ( 回顾 and 粗谈 )

    通常,我们会对于一个文本文件数据导入到数据库中,不多说,上代码. 首先,表结构如下.   其次,在我当前D盘中有个文本文件名为2.txt的文件. 在数据库中,可以这样通过一句代码插入. Bulk in ...

  6. 基础知识(C#语法、数据库SQL Server)回顾与总结

    前言 已经有大概一个多月没有更新博客,可能是开始变得有点懒散了吧,有时候想写,但是又需要额外投入更多的时间去学习,感觉精力完全不够用啊,所以为了弥补这一个多月的潜水,决定写一篇,衔接9月未写博客的空缺 ...

  7. SQL快速入门 ( MySQL快速入门, MySQL参考, MySQL快速回顾 )

    SQL 先说点废话,很久没发文了,整理了下自己当时入门 SQL 的笔记,无论用于入门,回顾,参考查询,应该都是有一定价值的,可以按照目录各取所需.SQL数据库有很多,MySQL是一种,本文基本都是SQ ...

  8. SQL Server-交叉联接、内部联接基础回顾(十二)

    前言 本节开始我们进入联接学习,关于连接这一块涉及的内容比较多,我们一步一步循序渐进学习,简短内容,深入的理解,Always to review the basics. 交叉联接(CROSS JOIN ...

  9. Thinkphp框架回顾(三)之怎么实现平常的sql操作数据库

    1.首先简单介绍一下我们的数据库,thinkphp数据库下有一个tp_user表,然后有四个字段....id,username,password,sex 我们今天的任务就是在Thinkphp下将数据调 ...

随机推荐

  1. 配置Android Studio

    1.去gradle官网下载gradle,gradle的版本可以在C:\Program Files\Android\Android Studio\gradle下看到 2.新建一个项目,退出后把下载好的g ...

  2. 论云时代最经济的APM工具的姿势

    阿里云于大概两月前商业化了一款APM产品 ARMS ,正式填补了 APM 上的云上监控的空白.那么作为阿里云官方 APM 工具,ARMS 和其他传统厂商的 APM 服务相比有什么特点呢? 通过和国内其 ...

  3. Primary Key Increase by Trigger

    Oracle Create Table: CREATE TABLE TAB( ID NUMBER(10) NOT NULL PRIMARY KEY, NAME VARCHAR(19) NOT NULL ...

  4. Codeforces Round #608 (Div. 2) E - Common Number (二分 思维 树结构)

  5. 23 October

    [HAOI2010] 最长公共子序列 求S串与T串的 最长公共子序列 的 长度 及其 个数. 动态规划递推式: \[ f(i,j)=\max\left\{ f(i-1,j), f(i,j-1) \ri ...

  6. 29 August

    P1352 Bosses' Masquerade 树形DP模板. #include <cstdio> #include <algorithm> using namespace ...

  7. 不间断电源(UPS)

    UPS电源一般指不间断电源 UPS(Uninterruptible Power System/Uninterruptible Power Supply),即不间断电源,是将蓄电池(多为铅酸免维护蓄电池 ...

  8. springboot参数校验

    为了能够进行嵌套验证,必须手动在Item实体的props字段上明确指出这个字段里面的实体也要进行验证.由于@Validated不能用在成员属性(字段)上,但是@Valid能加在成员属性(字段)上,而且 ...

  9. 获取小程序accessToken

    private static String getAccessToken(){ String url = "https://api.weixin.qq.com/cgi-bin/token? ...

  10. 使用HEXO建站

    使用Hexo模板 按以下指导进行本地预览和上传到你的github. 环境安装 安装node.js node.js官方下载地址https://nodejs.org/en/ 设置npm淘宝镜像站(npm默 ...