Skip to content

Commit 17cea93

Browse files
10.2Optimizing SQL Statements.md
1 parent 262a1aa commit 17cea93

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

10.2Optimizing SQL Statements.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
原文地址:https://dev.mysql.com/doc/refman/8.0/en/optimize-overview.html
2+
3+
4+
5+
## 10.2 Optimizing SQL Statements
6+
7+
- [10.2.1 Optimizing SELECT Statements](https://dev.mysql.com/doc/refman/8.0/en/select-optimization.html)
8+
- [10.2.2 Optimizing Subqueries, Derived Tables, View References, and Common Table Expressions](https://dev.mysql.com/doc/refman/8.0/en/subquery-optimization.html)
9+
- [10.2.3 Optimizing INFORMATION_SCHEMA Queries](https://dev.mysql.com/doc/refman/8.0/en/information-schema-optimization.html)
10+
- [10.2.4 Optimizing Performance Schema Queries](https://dev.mysql.com/doc/refman/8.0/en/performance-schema-optimization.html)
11+
- [10.2.5 Optimizing Data Change Statements](https://dev.mysql.com/doc/refman/8.0/en/data-change-optimization.html)
12+
- [10.2.6 Optimizing Database Privileges](https://dev.mysql.com/doc/refman/8.0/en/permission-optimization.html)
13+
- [10.2.7 Other Optimization Tips](https://dev.mysql.com/doc/refman/8.0/en/miscellaneous-optimization-tips.html)
14+
15+
16+
17+
The core logic of a database application is performed through SQL statements, whether issued directly through an interpreter or submitted behind the scenes through an API. The tuning guidelines in this section help to speed up all kinds of MySQL applications. The guidelines cover SQL operations that read and write data, the behind-the-scenes overhead for SQL operations in general, and operations used in specific scenarios such as database monitoring.
18+

0 commit comments

Comments
 (0)