Skip to content

Commit f6890cd

Browse files
committed
更新全书各个章节的标题信息
1 parent 691fcdc commit f6890cd

File tree

22 files changed

+818
-3
lines changed

22 files changed

+818
-3
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,11 @@
11
# sys数据库
22

3+
## sys Schema Configuration
4+
5+
## Formatting Functions
6+
7+
## The Views
8+
9+
## Helper Functions and Procedures
10+
11+
## Summary
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,19 @@
11
# information数据库
22

3+
## What Is the Information Schema?
4+
5+
## Privileges
6+
7+
## Views
8+
9+
### System Information
10+
11+
### Schema Information
12+
13+
### Performance Information
14+
15+
### Privilege Information
16+
17+
## Caching of Index Statistics Data
18+
19+
## Summary
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,19 @@
11
# show语句
22

3+
## Relationship to the Information Schema
4+
5+
## Relationship to the Performance Schema
6+
7+
## Engine Status
8+
9+
## Replication and Binary Logs
10+
11+
### Listing Binary Logs
12+
13+
### Viewing Log Events
14+
15+
### Show Connected Replicas
16+
17+
## Miscellaneous Statements
18+
19+
## Summary
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,9 @@
11
# 慢查询日志
22

3+
## Configuration
4+
5+
## Log Events
6+
7+
## Aggregation
8+
9+
## Summary

第3部分 工具/Chapter10.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,29 @@
11
# MySQL企业监控器
22

3+
## Overview
4+
5+
## Installation
6+
7+
### Download
8+
9+
### Installation Process
10+
11+
## Starting and Stopping the Service Manager
12+
13+
### Microsoft Windows
14+
15+
### Linux
16+
17+
## Adding MySQL Instances
18+
19+
## The Graphical User Interface
20+
21+
### General Navigation
22+
23+
### Advisors
24+
25+
### Timeseries Graphs
26+
27+
### The Query Analyzer
28+
29+
## Summary

第3部分 工具/Chapter11.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,25 @@
11
# MySQL Workbench
22

3+
## Installation
4+
5+
### Microsoft Windows
6+
7+
### Enterprise Linux 7
8+
9+
### Debian and Ubuntu
10+
11+
## Creating Connections
12+
13+
## Using MySQL Workbench
14+
15+
### Overview
16+
17+
### Configuration
18+
19+
### Safe Settings
20+
21+
### Reformatting Queries
22+
23+
## EER Diagrams
24+
25+
## Summary

第3部分 工具/Chapter12.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,37 @@
11
# MySQL Shell
22

3+
## Overview
4+
5+
### Installing MySQL Shell
6+
7+
### Invoking MySQL Shell
8+
9+
### Creating Connections
10+
11+
### Language Modes
12+
13+
### Built-in Help
14+
15+
### Built-in Global Objects
16+
17+
## The Prompt
18+
19+
### Built-in Prompts
20+
21+
### Custom Prompt Definition
22+
23+
### Powerline and Awesome Fonts
24+
25+
## Using External Modules
26+
27+
## Reporting Infrastructure
28+
29+
### Report Information and Help
30+
31+
### Executing Reports
32+
33+
### Adding Your Own Reports
34+
35+
## Plugins
36+
37+
## Summary
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,33 @@
11
# 数据类型
22

3+
## Why Data Types?
4+
5+
### Data Validation
6+
7+
### Documentation
8+
9+
### Optimized Storage
10+
11+
### Performance
12+
13+
### Correct Sorting
14+
15+
## MySQL Data Types
16+
17+
### Numeric Data Types
18+
19+
### Temporal Data Types
20+
21+
### String and Binary Data Types
22+
23+
### JSON Data Type
24+
25+
### Spatial Data Types
26+
27+
### Hybrid Data Types
28+
29+
## Performance
30+
31+
## Which Data Type Should You Choose?
32+
33+
## Summary
Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,85 @@
11
# 索引
22

3+
## What Is an Index?
4+
5+
## Index Concepts
6+
7+
### Key Versus Index
8+
9+
### Unique Index
10+
11+
### Primary Key
12+
13+
### Secondary Indexes
14+
15+
### Clustered Index
16+
17+
### Covering Index
18+
19+
## Index Limitations
20+
21+
## SQL Syntax
22+
23+
### Creating Tables with Indexes
24+
25+
### Adding Indexes
26+
27+
### Removing Indexes
28+
29+
## What Are the Drawbacks of Indexes?
30+
31+
### Storage
32+
33+
### Updating the Index
34+
35+
### The Optimizer
36+
37+
## Index Types
38+
39+
### B-Tree Indexes
40+
41+
### Full Text Indexes
42+
43+
### Spatial Indexes (R-Tree)
44+
45+
### Multi-valued Indexes
46+
47+
### Hash Indexes
48+
49+
## Index Features
50+
51+
### Functional Indexes
52+
53+
### Prefix Indexes
54+
55+
### Invisible Indexes
56+
57+
### Descending Indexes
58+
59+
### Partitioning and Indexes
60+
61+
### Auto-generated Indexes
62+
63+
## InnoDB and Indexes
64+
65+
### The Clustered Index
66+
67+
### Secondary Indexes
68+
69+
### Recommendations
70+
71+
### Optimal Use Cases
72+
73+
## Index Strategies
74+
75+
### When Should You Add or Remove Indexes?
76+
77+
### Choice of the Primary Key
78+
79+
### Adding Secondary Indexes
80+
81+
### Multicolumn Index
82+
83+
### Covering Indexes
84+
85+
## Summary
Lines changed: 41 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,41 @@
1-
# 索引统计
1+
# 索引统计
2+
3+
## What Are Index Statistics?
4+
5+
## InnoDB and Index Statistics
6+
7+
### How Statistics Are Collected
8+
9+
### Sample Pages
10+
11+
### Transaction Isolation Level
12+
13+
### Configuring Statistics Type
14+
15+
## Persistent Index Statistics
16+
17+
### Configuration
18+
19+
### Index Statistics Tables
20+
21+
## Transient Index Statistics
22+
23+
## Monitoring
24+
25+
### Information Schema STATISTICS View
26+
27+
### The SHOW INDEX Statement
28+
29+
### The Information Schema INNODB_TABLESTATS View
30+
31+
### The Information Schema TABLES View and SHOW TABLE STATUS
32+
33+
## Updating the Statistics
34+
35+
### Automatic Updates
36+
37+
### The ANALYZE TABLE Statement
38+
39+
### The mysqlcheck Program
40+
41+
## Summary

0 commit comments

Comments
 (0)