提交 e7758a0d 编写于 作者: 彭世瑜's avatar 彭世瑜

fix

上级 5c247c03
......@@ -43,3 +43,5 @@
[联合查询 union](blog/php-mysql/sql-union.md)
[连接查询 join](blog/php-mysql/sql-join.md)
[子查询 sub query](blog/php-mysql/sql-subquery.md)
# 子查询 sub query
## 1、基本概念
### 1.1、子查询
嵌套查询下层的程序模块,当一个查询是另一个查询的条件时,称之为子查询
一条select语句中,嵌入了另一条select语句
### 1.2、主查询
主要的查询对象,第一条select语句,确定所获取的数据目标(数据源)
### 1.3、子查询和主查询的关系
1. 子查询是嵌入到主查询中的
2. 子查询辅助主查询,要么作为条件,要么作为数据源
3. 子查询可以独立存在,是一条完整的select语句
### 1.4、子查询的分类
1、按功能分
1. 标量子查询:子查询返回的结果是一个数据(一行一列)
2. 列子查询:返回一列(一列多行)
3. 行子查询:返回一行(一行多列)
4. 表子查询:返回多行多列
5. exists子查询 返回1或者0(类似布尔操作)
2、按位置分
1. where子查询
2. from子查询
## 2、标量子查询
查询结果是一个数据(一行一列)
### 2.1、基本语法
```sql
-- 子查询得到的结果只有一个值
select * from 数据源 where 条件判断 =/<> (select 字段名 form 数据源 where 条件判断);
```
### 2.2、示例
```sql
-- 知道学生的id,查询所在班级名字
-- 主查询:班级,子查询:班级id
mysql> select * from my_student;
+----+--------+----------+------+--------+
| id | name | class_id | age | gender |
+----+--------+----------+------+--------+
| 1 | 刘备 | 1 | 18 | 2 |
| 2 | 李四 | 1 | 19 | 1 |
| 3 | 王五 | 2 | 20 | 2 |
| 4 | 张飞 | 2 | 21 | 1 |
| 5 | 关羽 | 1 | 22 | 2 |
| 6 | 曹操 | 1 | 20 | NULL |
+----+--------+----------+------+--------+
mysql> select * from my_class;
+----+--------+
| id | name |
+----+--------+
| 1 | 一班 |
| 3 | 三班 |
| 2 | 二班 |
+----+--------+
select class_id from my_student where id = 1;
+----------+
| class_id |
+----------+
| 1 |
+----------+
select * from my_class where id = (
select class_id from my_student where id = 1
);
+----+--------+
| id | name |
+----+--------+
| 1 | 一班 |
+----+--------+
```
## 3、列子查询
列子查询得到的结果是一列数据,一列多行
### 3.1、基本语法
```sql
主查询 where 条件 in (列子查询)
```
### 3.2、示例
```sql
-- 获取有学生的班级名字
-- 1、找到学生表中的所有班级id
-- 2、找出班级表中对应的名字
select distinct(class_id) from my_student;
+----------+
| class_id |
+----------+
| 1 |
| 2 |
+----------+
select name from my_class where id in (
select distinct(class_id) from my_student
);
+--------+
| name |
+--------+
| 一班 |
| 二班 |
+--------+
```
## 4、行子查询
行子查询返回的结果是一行多列
- 字段元素:一个字段对应的值
- 行元素:多个字段合起来作为一个元素参与运算
### 4.1、基本语法
```sql
主查询 where 条件 [(构造一个行元素)] = (行子查询);
```
### 4.2、示例
```sql
获取班级年龄最大,且班级号最大的学生
1、求年龄最大
2、求班级号最大
3、求出学生
-- 错误示例
select * from my_student having age = max(age) and class_id = max(class_id);
-- 1、having在group by之后,代表group by执行了一次,聚合函数使用
-- 2、group by 一旦执行,结果就是只返回一行记录,第一行
select max(age), max(class_id) from my_student;
+----------+---------------+
| max(age) | max(class_id) |
+----------+---------------+
| 22 | 2 |
+----------+---------------+
select * from my_student where (age, class_id) = (
select max(age), max(class_id) from my_student
);
Empty set (0.01 sec)
select * from my_student where (age, class_id) = (
select max(age), min(class_id) from my_student
);
+----+--------+----------+------+--------+
| id | name | class_id | age | gender |
+----+--------+----------+------+--------+
| 5 | 关羽 | 1 | 22 | 2 |
+----+--------+----------+------+--------+
```
总结:
标量子查询、列子查询、行子查询都属于where子查询
## 5、表子查询
表子查询返回结果是多行多列,与行子查询相似
行子查询需要行元素,表子查询没有
- 行子查询用于where条件判断,属于where子查询
- 表子查询用于from数据源,属于from子查询
### 5.1、基本语法
```sql
select 字段表 from (表子查询) as 别名 [where] [group by] [having] [order by] [limit]
```
### 5.2、示例
```sql
获取每个班级年龄最大的学生
-- 错误示例
select * from my_student group by class_id having age = max(age);
将每个班年龄最大的学生排在最前面 order by
针对结果进行group by 保留每组第一条数据
--
select * from (
select * from my_student order by age desc
) as t group by t.class_id;
+----+--------+----------+------+--------+
| id | name | class_id | age | gender |
+----+--------+----------+------+--------+
| 1 | 刘备 | 1 | 18 | 2 |
| 3 | 王五 | 2 | 20 | 2 |
+----+--------+----------+------+--------+
```
https://www.bilibili.com/video/BV1Vx411g7uJ?p=51&spm_id_from=pageDriver
......@@ -20,4 +20,18 @@
[weapp-qrcode](https://github.com/tomfriwel/weapp-qrcode) 微信小程序生成二维码工具
[echarts-map](https://github.com/mouday/echarts-map) 包含 echarts 用到的 map 地图文件
\ No newline at end of file
[echarts-map](https://github.com/mouday/echarts-map) 包含 echarts 用到的 map 地图文件
[uni-app](https://uniapp.dcloud.io/) 是一个使用 Vue.js (opens new window)开发所有前端应用的框架,开发者编写一套代码,可发布到iOS、Android、Web(响应式)、以及各种小程序(微信/支付宝/百度/头条/飞书/QQ/快手/钉钉/淘宝)、快应用等多个平台。
[uView UI](https://www.uviewui.com/): 是全面兼容nvue的uni-app生态框架,全面的组件和便捷的工具会让您信手拈来,如鱼得水
[小程序扩展组件库](https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/extended/component-plus/)扩展组件是对小程序内置组件能力的补充,包括一些常见的功能组件,持续补充中。
[wxml-to-canvas](https://github.com/wechat-miniprogram/wxml-to-canvas):小程序内通过静态模板和样式绘制 canvas ,导出图片,可用于生成分享图等场景
[miniprogram-computed](https://github.com/wechat-miniprogram/computed) 小程序自定义组件扩展 behavior,计算属性 computed 和监听器 watch 的实现。在 data 或者 properties 改变时,会重新计算 computed 字段并触发 watch 监听器。
[mobx-miniprogram-bindings](https://github.com/wechat-miniprogram/mobx-miniprogram-bindings) 小程序的 MobX 绑定辅助库
[Day.js](https://day.js.org/zh-CN/) Moment.js 的 2kB 轻量化方案,拥有同样强大的 API
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册