Skip to content

Commit eaa3a14

Browse files
authored
Update 一条sql语句在mysql中如何执行的.md
1 parent 33aa32f commit eaa3a14

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

docs/database/一条sql语句在mysql中如何执行的.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
本文来自 Github 用户[木木匠](https://github.com/kinglaw1204)投稿,[SnailClimb](https://github.com/Snailclimb) 对本文进行了内容和排版进行了修改完善。
2+
3+
<!-- TOC -->
4+
5+
- [一 MySQL 基础架构分析](#一-mysql-基础架构分析)
6+
- [1.1 MySQL 基本架构概览](#11-mysql-基本架构概览)
7+
- [1.2 Server 层基本组件介绍](#12-server-层基本组件介绍)
8+
- [1) 连接器](#1-连接器)
9+
- [2) 查询缓存(MySQL 8.0 版本后移除)](#2-查询缓存mysql-80-版本后移除)
10+
- [3) 分析器](#3-分析器)
11+
- [4) 优化器](#4-优化器)
12+
- [5) 执行器](#5-执行器)
13+
- [二 语句分析](#二-语句分析)
14+
- [2.1 查询语句](#21-查询语句)
15+
- [2.2 更新语句](#22-更新语句)
16+
- [三 总结](#三-总结)
17+
- [四 参考](#四-参考)
18+
19+
<!-- /TOC -->
20+
121
<!-- TOC -->
222

323
- [一 MySQL 基础架构分析](#一-mysql-基础架构分析)
@@ -144,4 +164,4 @@ update tb_student A set A.age='19' where A.name=' 张三 ';
144164
## 四 参考
145165

146166
* 《一起构建 MySQL 知识网络》
147-
* MySQL 5.6参考手册:<https://dev.MySQL.com/doc/refman/5.6/en/>
167+
* MySQL 5.6参考手册:<https://dev.MySQL.com/doc/refman/5.6/en/>

0 commit comments

Comments
 (0)