SQL select详解(基于选课系统)

news2025/1/20 5:56:36

表详情:

学生表:
请添加图片描述

学院表:
请添加图片描述

学生选课记录表:

请添加图片描述

课程表:

请添加图片描述

教师表:

请添加图片描述

查询:

1. 查全表

-- 01. 查询所有学生的所有信息
-- 方法一:会更复杂,进行了两次查询,第一次查询这个表的列,第二次根据查到的列再查每列的数据
select * from teachers;
-- 方法二:直接查询该实体所有属性
select stu_id
	, stu_name
    , stu_sex
    , stu_birth
    , stu_addr
    , col_id 
 from students;

2. 投影(select)和别名(alias / as)

-- 02. 查询学生的学号、姓名和籍贯(投影和别名)	-	别名:alias
select stu_id as 学号
	, stu_name as 姓名
    , stu_addr as 籍贯
 from students;

-- 03. 查询所有课程的名称及学分(投影和别名)
select cou_name as 名称
	 , cou_credit as 学分
  from courses;

3. 数据筛选(where 加 and / or 加 分支 加 比较符)

-- 04. 查询所有女学生的姓名和出生日期(数据筛选)
select stu_name
	 , stu_birth
  from students
 where stu_sex = 0;

-- 05. 查询籍贯为“四川成都”的女学生的姓名和出生日期(数据筛选)
select stu_name
	 , stu_birth
  from students
 where stu_sex = 0 and stu_addr = '四川成都';

-- 06. 查询籍贯为“四川成都”或者性别是女的学生(数据筛选)
select stu_name
	 , stu_birth
  from students
 where stu_sex = 0 or stu_addr = '四川成都';

-- 07. 查询所有80后学生的姓名、性别和出生日期(数据筛选)
select stu_name
  , stu_sex
  , stu_birth
from students
where stu_birth >= '1980-1-1' and stu_birth <= '1989-12-31';
  
select stu_name
   , stu_sex
   , stu_birth
from students
where stu_birth between '1980-1-1' and '1989-12-31';
   
-- 将01改为男女
	-- MySQL方言
	select stu_name as 姓名
		   , if(stu_sex,'男','女') as 性别
		   , stu_birth as 出生日期
		from students
	   where stu_birth between '1980-1-1' and '1989-12-31';
 
	-- 标准SQL
    select stu_name as 姓名
		 , case stu_sex when 1 then '男' when  0 then '女' else '未知' end as 性别
	  from students
	 where stu_birth between '1980-1-1' and '1989-12-31';
    
    
-- 08. 查询学分大于2分的课程名称和学分(数据筛选)
select cou_name
	 , cou_credit
  from courses
 where cou_credit > 2;
 
-- 09. 查询学分是奇数的课程的名称和学分(数据筛选)
select cou_name
	 , cou_credit
  from courses
 where cou_credit%2 <> 0;
 
-- 10. 查询选择选了1111的课程考试成绩在90分以上的学生学号(数据筛选)
select stu_id
  from records
 where cou_id = 1111 and score > 90;

-- 11. 查询名字叫“杨过”的学生的姓名和性别
select stu_name
	 , stu_sex
  from students
 where stu_name = '杨过';

4.模糊查询(通配符和正则)

-- 12. 查询姓“杨”的学生姓名和性别(模糊查询)
-- wild card - 通配符 - % - 零个或任意多个字符
select stu_name
	 , stu_sex
  from students
 where stu_name like '杨%';

-- 13. 查询姓“杨”名字两个字的学生姓名和性别(模糊查询)
-- wild card - 通配符 - _ - 精确匹配一个字符
select stu_name
	 , stu_sex
  from students
 where stu_name like '杨_';

-- 14. 查询姓“杨”名字三个字的学生姓名和性别(模糊查询)
select stu_name
	 , stu_sex
  from students
 where stu_name like '杨__';
 
-- 15. 查询名字中有“不”字或“嫣”字的学生的姓名(模糊查询)
select stu_name
  from students
 where stu_name like '%不%' or stu_name like '%嫣%';
 
 select stu_name
  from students
 where stu_name regexp '[\\u4e00-\\u9fa5]*?[不嫣][\\u4e00-\\u9fa5]*?';

select stu_name
  from students
 where stu_name like '%不%'
 union
select stu_name
  from students
 where stu_name like '%嫣%';
 
-- 16. 查询姓“杨”或姓“林”名字三个字的学生的姓名(正则表达式模糊查询)
select stu_name
  from students
 where stu_name regexp '[杨林][\\u4e00-\\u9fa5]{2}';

5. 空值和去重(三值逻辑和trim)

-- 17. 查询没有录入籍贯的学生姓名(空值处理)
-- 三值逻辑 - true / false / unknown

select stu_name
  from students
 where stu_addr is null;
 
-- 如果遇到空字符串
-- trim - 修剪字符串左右两端指定的字符(默认修建空格)
update students set stu_addr = ' ' where stu_id = 3011;
 
select stu_name
  from students
 where stu_addr is null or trim(stu_addr) = '';

-- 18. 查询录入了籍贯的学生姓名(空值处理)
select stu_name
  from students
 where stu_addr is not null and trim(both ' ' from stu_addr) <> '';
 
-- 19. 查询学生选课的所有日期(去重)
select distinct sel_date
  from records ;
  
-- 20. 查询学生的籍贯(空值处理和去重)
select distinct stu_addr
  from students
 where stu_addr is not null and trim(stu_addr) <> '';

6. 排序

-- 21. 查询男学生的姓名和生日按年龄从大到小排列(排序)
-- 排序 asc (默认)升序 desc 降序
select stu_name
	 , stu_birth
  from students
 where stu_sex = 1
order by stu_birth asc, stu_id desc;

7. 日期函数和数值函数

-- 查询现在的日期时间
	-- select current_timestamp();	2023-04-12 09:15:58
	-- select now();	2023-04-12 09:14:16
	-- select curdate();    2023-04-12
	-- select curtime();	09:15:24
-- 日期差
	-- datediff(大日期,小日期) 两个日期相差的天数
	-- timestampdiff(单位,小日期,大日期)
-- 22. 将上面查询中的生日换算成年龄(日期函数、数值函数)
select stu_name as 姓名
	 , datediff(curdate(),stu_birth) div 365 as 年龄
  from students
 where stu_sex = 1
order by stu_birth asc;

select stu_name as 姓名
	 , timestampdiff(year,stu_birth,curdate()) as 年龄
  from students
 where stu_sex = 1
order by stu_birth desc;

8. 聚合函数(最大/方差/平均…coalesce)

-- 有多条数据 最后只给出一条数据
-- 规约 reduce / aggregate 聚合
-- python中的规约: filter / map / reduce (max/min/sum/avg/count)

总体方差:
σ 2 = 1 N ∑ i = 1 N ( x i − μ ) 2 \sigma^{2} = \frac{1}{N} \sum_{i=1}^{N} (x_{i} - \mu)^{2} σ2=N1i=1N(xiμ)2
总体标准差:
σ = 1 N ∑ i = 1 N ( x i − μ ) 2 \sigma = \sqrt{\frac{1}{N} \sum_{i=1}^{N} (x_{i} - \mu)^{2}} σ=N1i=1N(xiμ)2
样本方差:
s 2 = 1 n − 1 ∑ i = 1 n ( x i − x ˉ ) 2 s^{2} = \frac{1}{n - 1} \sum_{i=1}^{n} (x_{i} - \bar{x})^{2} s2=n11i=1n(xixˉ)2
样本标准差:
s = 1 n − 1 ∑ i = 1 n ( x i − x ˉ ) 2 s = \sqrt{\frac{1}{n - 1} \sum_{i=1}^{n} (x_{i} - \bar{x})^{2}} s=n11i=1n(xixˉ)2

markdown写数学公式:

https://www.zybuluo.com/codeep/note/163962

-- SQL聚合函数:
-- max / min / avg / sum / count
-- stddev_pop(总体标准差)
-- stddev_samp(样本标准差)
-- var_pop(总体方差)
-- var_samp(样本方差)
-- 23. 查询年龄最大的学生的出生日期(聚合函数)
select min(stu_birth)
  from students;

-- 24. 查询年龄最小的学生的出生日期(聚合函数)
select max(stu_birth)
  from students;

-- 25. 查询编号为1111的课程考试成绩的最高分(聚合函数)
select max(score)
  from records
 where cou_id = 1111;
 
-- 26. 查询学号为1001的学生考试成绩的最低分(聚合函数)
select min(score)
  from records
 where cou_id = 1111;

-- 27. 查询学号为1001的学生考试成绩的平均分和标准差(聚合函数)
select avg(score)
	 , stddev_pop(score)
     , var_pop(score)
  from records
 where stu_id = 1001;

-- 28. 查询学号为1001的学生考试成绩的平均分,如果有null值,null值算0分(聚合函数)
-- ifnull 是MySQL的方言
select avg(ifnull(score,0))
  from records
 where stu_id = 1001;
 
-- 标准SQL的函数 coalesce(值1,值2,值3,...) 返回第一个非空的值
select avg(coalesce(score,0))
  from records
 where stu_id = 1001;
 
-- count(*) 返回所有的行数
 select sum(score) / count(*)
   from records
  where stu_id = 1001;

9. 分组和聚合函数(having/rollup/取整)

-- 29. 查询男女学生的人数(分组和聚合函数)
select case stu_sex when 1 then '男' else '女' end as 性别
	 , count(*) as 人数
  from students
 group by stu_sex;

-- 30. 查询每个学院学生人数(分组和聚合函数)
-- with rollup 总计 rollup维度上卷
select col_id as 学院
	 , count(*) as 学生人数
  from students
 group by col_id
  with rollup;

-- 31. 查询每个学院男女学生人数(分组和聚合函数)
select col_id as 学院
	 , stu_sex as 性别
     , count(*) as 学生人数
  from students
 group by col_id, stu_sex
  with rollup;

-- 32. 查询选课学生的学号和平均成绩(分组和聚合函数)
-- round() 保留几位小数, ceil向大取整, floor向小取整
select stu_id
	 , round(avg(score),1)
	 , ceil(avg(score))
     , floor(avg(score))
  from records
 group by stu_id;

-- 33. 查询平均成绩大于等于90分的学生的学号和平均成绩(分组和聚合函数)
-- 分组之前的筛选数据用where子句;分组之后的筛选数据用having子句
select stu_id
	 , round(avg(score),1)
  from records
 group by stu_id
having avg(score) >= 90;
  
-- 34. 查询所有课程成绩大于80分的同学的学号(分组和聚合函数)
select stu_id
  from records
 group by stu_id
having min(score) > 80;

10. 嵌套查询(定义变量/any/all)

-- 35. 查询年龄最大的学生的姓名(嵌套查询)
-- 嵌套查询:把一个查询结果作为另外一个查询的一部分来使用,也称为子查询。
select min(stu_birth)
  from students;
select stu_name
  from students
 where stu_birth = '1985-04-17';

-- 定义变量:
	-- 赋值方法1:用户自定义变量前面要有@,给变量赋值前面要加set
	 set @min_birth = (select min(stu_birth) from students);
	-- 赋值方法2:海象运算符
	 select @min_birth := (select min(stu_birth) from students);
	 
	 select stu_name
	  from students
	 where stu_birth = @min_birth;

-- 一步到位
select stu_name
  from students
 where stu_birth = (select min(stu_birth) 
					  from students);

-- 36. 查询选了两门以上的课程的学生姓名(嵌套查询/分组/数据筛选)
-- 符合要求的学号
select stu_id
  from records
 group by stu_id
having count(score) > 2;

-- 通过学号查名字
select stu_name
  from students
 where stu_id in (select stu_id
					from records
				   group by stu_id
                  having count(*) > 2);
-- any 用any后的任意一个值和前面做对比
-- all 前面和后面的所有相等
select stu_name
  from students
 where stu_id = any (select stu_id
					   from records
				      group by stu_id
                     having count(*) > 2);

11. 连接查询(交叉连接/内连接/自然连接删除线格式 )

请添加图片描述

-- 37. 查询学生的姓名、生日和所在学院名称(连接查询)
-- from后面写多个表,是from后面表的笛卡尔积

-- 方法1:笛卡尔积
select stu_name
	 , stu_birth
     , col_name
     , students.col_id
     , colleges.col_id
  from students,colleges
 where students.col_id = colleges.col_id;

-- 方法2:cross join交叉连接
select stu_name
	 , stu_birth
     , col_name
     , students.col_id
     , colleges.col_id
  from students cross join colleges
 where students.col_id = colleges.col_id;

-- 方法3:内连接
select stu_name
	 , stu_birth
     , col_name
  from students inner join colleges
 where students.col_id = colleges.col_id;
 
-- 方法4:自然连接
-- 自然连接会根据两张表的同名列进行匹配
-- 自然连接没有同名列,同名列都合成一个列了
select stu_name
	 , stu_birth
     , col_name
  from students natural join colleges;

-- 38. 查询学生姓名、课程名称以及成绩(连接查询)
-- 笛卡尔积
select stu_name
	 , cou_name 
     , score
  from students, records, courses
 where students.stu_id = records.stu_id and records.cou_id = courses.cou_id;
 
-- 自然连接
select stu_name
	 , cou_name 
     , score
  from students natural join records natural join courses
 where score is not null;

12. 分页查询

-- 39. 上面的查询结果按课程和成绩排序取前5条数据(分页查询)
-- limit和offset是方言
select stu_name
	 , cou_name 
     , score
  from students natural join records natural join courses
 where score is not null
 order by cou_id asc, score desc
 limit 5;

-- 40. 上面的查询结果按课程和成绩排序取第6-10条数据(分页查询)
select stu_name
	 , cou_name 
     , score
  from students natural join records natural join courses
 where score is not null
 order by cou_id asc, score desc
 limit 5
offset 5;
 
-- 41. 上面的查询结果按课程和成绩排序取第11-15条数据(分页查询)
select stu_name
	 , cou_name 
     , score
  from students natural join records natural join courses
 where score is not null
 order by cou_id asc, score desc
 limit 5
offset 10;

13. 嵌套和连接查询

-- 42. 查询选课学生的姓名和平均成绩(嵌套查询和连接查询)
select stu_name
	 , avg_score
  from students
	   natural join (select stu_id
						  , round(avg(score),1) as avg_score
					   from records
					  group by stu_id) as temp;

-- 43. 查询学生的姓名和选课的数量(嵌套查询和连接查询)
select stu_name
	 , total1
     , total2
  from students
	   natural join (select stu_id
						  , count(*) as total1
                          , count(score) as total2
					   from records
					  group by stu_id) as temp;

14. 外连接

-- 外连接
	-- 左外连接(left outer join / left join):左表(写到join左边的表)取到所有的数据,不满足连表条件的地方填空值。
	-- 右外连接(right outer join / right join):右表(写到join右边的表)取到所有的数据,不满足连表条件的地方填空值。
    -- 全外连接(full outer join / full join):左右两张表都要取到所有的数据,不满足连表条件的地方填空值。(MySQL不支持)
		-- 可以通过左外连接union右外连接
-- 44. 查询每个学生的姓名和选课数量(左外连接和嵌套查询)
-- 选课表里没有她们的数据 自然连接和内连接不好用
select stu_name
	 , total1
     , total2
  from students
	   left join (select stu_id
					   , count(*) as total1
					   , count(score) as total2
					from records
				   group by stu_id) as temp
			on students.stu_id = temp.stu_id;

-- 45. 查询没有选课的学生的姓名(左外连接和数据筛选)
-- 查是哪几个没有选课(用空值填的)
select stu_name
	 , rec_id
  from students left join records
			on students.stu_id = records.stu_id;
-- 通过空值查没选课的名字
select stu_name
  from students left join records
			on students.stu_id = records.stu_id
 where rec_id is null;

SQL执行顺序

请添加图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/434702.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

机器学习笔记之正则化(六)批标准化(BatchNormalization)

机器学习笔记之正则化——批标准化[Batch Normalization] 引言引子&#xff1a;梯度消失梯度消失的处理方式批标准化 ( Batch Normalization ) (\text{Batch Normalization}) (Batch Normalization)场景构建梯度信息比例不平衡批标准化对于梯度比例不平衡的处理方式 ICS \text{…

《抄送列表》:过滤次要文件,优先处理重要文件

目录 一、题目 二、思路 1、查找字符/字符串方法&#xff1a;str1.indexOf( ) 2、字符串截取方法&#xff1a;str1.substring( ) 三、代码 详细注释版&#xff1a; 简化注释版&#xff1a; 一、题目 题目&#xff1a;抄送列表 题目链接&#xff1a;抄送列表 …

Java[集合] Map 和 Set

哈喽&#xff0c;大家好~ 我是保护小周ღ&#xff0c;本期为大家带来的是 Java Map 和 Set 集合详细介绍了两个集合的概念及其常用方法&#xff0c;感兴趣的朋友可以来学习一下。更多精彩敬请期待&#xff1a;保护小周ღ *★,*:.☆(&#xffe3;▽&#xffe3;)/$:*.★* ‘ 一、…

JVM知识汇总

1、JVM架构图 2、Java编译器 Java编译器做的事情很简单&#xff0c;其实就是就是将Java的源文件转换为字节码文件。 1. 源文件存储的是高级语言的命令&#xff0c;JVM只认识"机器码"&#xff1b; 2. 因此将源文件转换为字节码文件&#xff0c;即是JVM看得懂的"…

Node.js—Buffer(缓冲器)

文章目录 1、概念2.、特点3、创建Buffer3.1 Buffer.alloc3.2 Buffer.allocUnsafe3.3 Buffer.from 4、操作Buffer4.1 Buffer 与字符串的转化4.2 Buffer 的读写 参考 1、概念 Buffer 是一个类似于数组的对象 &#xff0c;用于表示固定长度的字节序列。Buffer 本质是一段内存空间…

视觉学习(四) --- 基于yolov5进行数据集制作和模型训练

环境信息 Jetson Xavier NX&#xff1a;Jetpack 4.4.1 Ubuntu&#xff1a;18.04 CUDA: 10.2.89 OpenCV: 4.5.1 cuDNN&#xff1a;8.0.0.180一.yolov5 项目代码整体架构介绍 1. yolov5官网下载地址&#xff1a; GitHub: https://github.com/ultralytics/yolov5/tree/v5.0 2. …

单元测试中的独立运行

单元测试中的独立运行 单元测试是针对代码单元的独立测试。要测试代码单元&#xff0c;首先要其使能够独立运行。项目中的代码具有依赖关系&#xff0c;例如&#xff0c;一个源文件可能直接或间接包含大量头文件&#xff0c;并调用众多其他源文件的代码&#xff0c;抽取其中的一…

论文阅读:Unsupervised Manifold Linearizing and Clustering

Author: Tianjiao Ding, Shengbang Tong, Kwan Ho Ryan Chan, Xili Dai, Yi Ma, Benjamin D. Haeffele Abstract 在本文中&#xff0c;我们建议同时执行聚类并通过最大编码率降低来学习子空间联合表示。 对合成和现实数据集的实验表明&#xff0c;所提出的方法实现了与最先进的…

limit、排序、分组单表查询(三)MySQL数据库(头歌实践教学平台)

文章目的初衷是希望学习笔记分享给更多的伙伴&#xff0c;并无盈利目的&#xff0c;尊重版权&#xff0c;如有侵犯&#xff0c;请官方工作人员联系博主谢谢。 目录 第1关&#xff1a;对查询结果进行排序 任务描述 相关知识 对查询结果排序 指定排序方向 编程要求 第2关&a…

浏览器架构和事件循环

浏览器架构 早期浏览器【单进程多线程】 Page Thread 页面渲染&#xff0c;负责执行js,plugin,drawNetWork Thread 网络请求其余线程 file, storage缺点&#xff1a;只要其中一个线程崩溃&#xff0c;页面就会崩溃。 现代浏览器架构 多进程的浏览器&#xff0c;浏览器的每一个…

几种常见的激活函数

文章目录 常见的激活函数介绍Sigmoid函数ReLU函数LeakyReLU函数Tanh函数Softmax函数总结 常见的激活函数介绍 激活函数是神经网络中的重要组成部分&#xff0c;它决定了神经元的输出。在神经网络的前向传播中&#xff0c;输入数据被传递给神经元&#xff0c;经过加权和和激活函…

Unity自动化打包(1)

一 安装Jenkins https://www.jenkins.io/download/ 官网 1&#xff09; 使用 brew 安装 2&#xff09; 安装完成后一般都会遇到问题 我用的是jenkins-lts 稳定版 解决办法 删除掉对应的文件夹 1 rm -rf /usr/local/Homebrew/Library/Taps/homebrew/homebrew-services 2…

kafka延时队列内部应用简介

kafka延时队列_悠然予夏的博客-CSDN博客 两个follower副本都已经拉取到了leader副本的最新位置&#xff0c;此时又向leader副本发送拉取请求&#xff0c;而leader副本并没有新的消息写入&#xff0c;那么此时leader副本该如何处理呢&#xff1f;可以直接返回空的拉取结…

[ 高并发]Java高并发编程系列第二篇--线程同步

并发,听起来高大上的一个词汇,在身处于互联网潮的社会大趋势下,高并发赋予了更多的传奇色彩.首先,我们可以看到很多招聘中,会提到有高并发项目者优先.高并发,意味着,你的前雇主,有很大的业务层面的需求,而且也能怎么你在整个项目中的一个处理逻辑的能力体现.那么,你真的知道什么…

ThreadLocal 内存泄露的原因及处理方式

1、ThreadLocal 使用原理 ThreadLocal的主要用途是实现线程间变量的隔离&#xff0c;表面上他们使用的是同一个ThreadLocal&#xff0c; 但是实际上使用的值value却是自己独有的一份。用一图直接表示threadlocal 的使用方式。 从图中我们可以当线程使用threadlocal 时&#xf…

CRC校验原理及其使用

目录 何为CRC 为什么需要校验 为什么是CRC CRC的缺点 目录 何为CRC 为什么需要校验 为什么是CRC CRC的缺点 如何进行CRC校验 校验标准式是什么玩意&#xff1f; 常见的CRC校验 CRC校验计算过程 CRC校验代码参考 代码解读 生成CRC8校验表的代码 CRC检验网站 如何…

GEE:使用 VCT(Vegetation Change Tracker)算法森林进行时序变化检测分析

作者: _养乐多_ 本文将介绍一段 Google Earth Engine 的代码,该代码用于进行时序变化检测分析,即使用 VCT(Vegetation Change Tracker)算法对某一地区的多年影像进行分析,得出每一年的变化程度,并输出一个 VCT 矩阵,同时还可根据矩阵得到每一年的变化遥感图。可以分析…

时下热门话题:ChatGPT能否取代人类?

时下热门话题&#xff1a;ChatGPT能否取代人类&#xff1f; 2022年11月底&#xff0c;人工智能对话聊天机器人ChatGPT推出&#xff0c;迅速在社交媒体上走红&#xff0c;短短5天&#xff0c;注册用户数就超过100万。2023年1月末&#xff0c;ChatGPT的月活用户已突破1亿&#x…

迭代器设计模式(Iterator Design Pattern)[论点:概念、组成角色、相关图示、示例代码、框架中的运用、适用场景]

概念 迭代器设计模式&#xff08;Iterator Design Pattern&#xff09;是一种行为型设计模式&#xff0c;它提供了一种方法来顺序访问一个聚合对象&#xff08;如集合&#xff09;的元素&#xff0c;而不需要暴露该对象的底层表示。迭代器模式可以帮助我们在不关心底层数据结构…

红酒分类案例中使用分箱处理

红酒分类案例中使用分箱处理 描述 在建立分类模型时&#xff0c;通常需要对连续特征进行离散化(Discretization)处理 &#xff0c;特征离散化后&#xff0c;模型更加稳定&#xff0c;降低了过拟合风险。离散化也叫分箱(binning)&#xff0c;是指把连续的特征值划分为离散的特…