1. OverviewIn MySQL, we can use slow query logs or show processlist commands to locate SQL statements that take a long time to execute. After that, we can use EXPLAIN or DESC commands to obtain information about how MySQL executes SELECT statements, including how tables are connected and the order in which they are connected during the execution of SELECT statements. 1. Explain statement testexplain+select statement is the usage of explain command 2. Description of each column in the explain resultBelow, we will explain these columns one by one. 2. Explain ID column1. Environmental preparation2. Detailed explanation of the id column in explainThe id field is the serial number of the select query, which is a set of numbers that represents the order in which the select clauses are executed or the tables are operated in the query. There are three id situations: (1) The same id means the order of loading tables is from top to bottom. (2) id The larger the id value, the higher the priority and the earlier it is executed. (3) Some ids are the same, while others are different and exist at the same time. Items with the same id can be considered as a group and executed sequentially from top to bottom. Among all groups, the larger the id value, the higher the priority and the earlier it is executed. 3. select_type column of explain1. select_type
SIMPLE 3. PRIMARY, SUBQUERY4. DERIVED5. UNION, UNION RESULTIV. Explain table and type columns1. Table columnsThe table column shows which table the row of data belongs to. 2. Type columnThe type column shows the access type. 3. Example (1) NULL (2) system (3) const (4) eq_ref (5) ref (6) index (7) ALL 5. Explain key, rows, and extra columns1. key2. rowsNumber of scan lines If there is an index, only one row is scanned 3. Extra SummarizeThis is the end of this article about the basic usage tutorial of explain statement in MySQL. For more relevant content on the use of explain in MySQL, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Web page production TD can also overflow hidden display
>>: Solve the problem of docker pull image error
Table of contents 1. Check whether the docker env...
Table of contents 1. Installation: 2. Use: 3. Bui...
Application Scenario In the data table, the appli...
In the recent project, we need to create an effec...
Table of contents Event Loop miscroTask (microtas...
After entering yum in linux, the prompt: -bash: /...
1. Style object The style object represents a sin...
This article example shares the specific code of ...
Set change mysqlroot password Enter the MySQL dat...
1. px px is the abbreviation of pixel, a relative...
This article example shares the specific code of ...
1.fullpage.js Download address https://github.com...
Table of contents definition grammar Examples 1. ...
Table of contents Is real-time update required? M...
Introduction to Nginx Nginx ("engine x"...