Files
NoteBook/MySQL/1. 执行 SQL 语句的过程.md
T
2025-09-25 20:14:36 +08:00

31 lines
363 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 执行一条 SQL 语句的过程
## 连接器
- 连接到服务(TCP)
- 验证用户身份
- 验证用户权限
## 解析器
- 词法分析
- 语法分析
## 预处理器
- 检查表以及字段
- 扩展 * 符号
## 优化器
- 决定使用的索引
## 执行器
- 与存储引擎交互
*三种交互*
- 主键索引
- 全表扫描
- 索引下推