MySQL学习系列2--MySQL执行计划分析EXPLAIN
MySQLexplain
1.Explain语法
EXPLAIN SELECT ……
变体:
EXPLAIN EXTENDED SELECT …… 将执行计划“反编译”成SELECT语句,运行SHOW WARNINGS 可得到被MySQL优化器优化后的查询语句
2.执行计划分析和实例
创建员工表Employee
create table Employee( ID int auto_increment, Ename varchar(32), Age int, Salary float, MID int, Primary key (ID));
创建经理表Manager
create table Manager(MID int,Name varchar(32),Primary key(MID));
首先,看看下面这两条语句的执行结果,它们分别代表什么意思呢?
下图中结果部分的Type为ALL, 表示执行的是全表扫描。
下图中执行结果部分Type为const,key为PRIMARY, 表示使用了主键索引,因为id为主键。
那么,每一列分别代表什么意思呢,请看下面的解释。
select_type 表示查询中每个select子句的类型(简单 OR复杂)
a.SIMPLE:查询中不包含子查询或者UNION
b.查询中若包含任何复杂的子部分,最外层查询则被标记为:PRIMARY
c.在SELECT或WHERE列表中包含了子查询,该子查询被标记为:SUBQUERY
d.在FROM列表中包含的子查询被标记为:DERIVED(衍生)
e.若第二个SELECT出现在UNION之后,则被标记为UNION;若UNION包含在 FROM子句的子查询中,外层SELECT将被标记为:DERIVED
f.从UNION表获取结果的SELECT被标记为:UNION RESULT
MySQL执行计划EXPLAIN主要可以通过type来进行分析:
type表示MySQL在表中找到所需行的方式,又称“访问类型”,常见类型如下:(从上至下,效果依次变好)
ALL:Full Table Scan。 index:Full Index Scan。
range:索引范围扫描。
ref :非唯一性索引扫描。
eq_ref :唯一性索引扫描。
const,system:将查询转换为一个常量。
null:MySQL在优化过程中分解语句,执行时甚至不用访问表或索引
ALL:Full Table Scan, MySQL将遍历全表以找到匹配的行,示例如下:
ename字段上没有索引,所以也是全表扫描。
index:Full Index Scan,index与ALL区别为index类型只遍历索引树
ID字段为主键索引,在索引中扫描。
range:索引范围扫描,对索引的扫描开始于某一点,返回匹配值域的行, 常见于between、,IN等的查询
ref:非唯一性索引扫描,返回匹配某个单独值的所有行。常见于使用非唯一索引即唯一索引的非唯一前缀进行的查找
name和age和覆盖索引,这里只使用了name,即只使用了唯一性索引的一部分,故为ref。
eq_ref:唯一性索引扫描,对于每个索引键,表中只有一条记录与之匹配。 常见于主键或唯一索引扫描
MID对于表Manager是唯一的,主键索引,来与employee连接,故type为eq_ref。
const、system:当MySQL对查询某部分进行优化,并转换为一个常量时, 使用这些类型访问。如将主键置于where列表中,MySQL就能将该查询转 换为一个常量。
system是const类型的特例,当查询的表只有一行的情况下, 使用system。
exployee中ID为主键索引,可以直接定位,故为const,而衍生后的结果集A中只有一条记录,故为type为system。
NULL:MySQL在优化过程中分解语句,执行时甚至不用访问表或索引。
ID= SELECT MIN(ID)说明ID已确定,使用EXPLAIN EXTENDED优化,所以type为null,mysql自动优化,无需去访问表或索引。
使用show warnings查看优化后得到的结果。
其他列的含义如下:
possible_keys 指出MySQL能使用哪个索引在表中找到行,查询涉及到的字段上若存在索引,则该索引将被列出,但不一定被查询使用
key 显示MySQL在查询中实际使用的索引,若没有使用索引,显示为NULL
key_len 表示索引中使用的字节数,可通过该列计算查询中使用的索引的长度
ref 表示上述表的连接匹配条件,即哪些列或常量被用于查找索引列上的值
rows 表示MySQL根据表统计信息及索引选用情况,估算的找到所需的记录所需要读取的行数
Extra 包含不适合在其他列中显示但十分重要的额外信息 如using where,using index
3.总结
MySQL的执行计划分析在实际工作中也是非常重要的,SQL SERVER可以通过“显示估计的执行计划”来查看sql的执行计划,而MySQL则是通过explain + 查询语句来查看其执行计划,找出其索引使用情况,执行顺序等等,从而进行优化,使查询的性能得到提升。
如果您有什么问题,欢迎在下面评论,我们一起讨论,谢谢~
如果您觉得还不错,不妨点下右下方的推荐,有您的鼓励我会继续努力的~

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Can't exit win11 preview program? When we use the win11 system, the win11 preview program will be launched on the computer for us to use. However, some friends do not want to use this preview program. I hope this preview program can be launched. If you don’t know how to exit, the editor below We have compiled a tutorial guide for exiting the Win11 preview experience program. If you are interested, let’s take a look below! Tutorial guide for exiting the Win11 Insider Program 1. First press the shortcut key "win+i" to enter Windows Settings and click "Update and Security". 2. Then click "Windows Insider Program" in the left taskbar, as shown in the figure. 3. At this point you can see the experience on the right

Zhongguancun News: On the morning of April 18, Huawei suddenly announced that the P70 series of mobile phones are officially on sale under the Pioneer Plan. Friends who want to buy should be prepared to take action. According to past practice, Huawei's flagship mobile phones are very popular and will always be out of stock. . This time the Huawei P70 series has been renamed Pura, which means pure. Previously, Huawei's Yu Chengdong said: Since 2012, Huawei's P series smartphones have been like loyal partners, accompanying hundreds of millions of users around the world to spend countless precious moments and jointly witness the beauty and excitement of life. He deeply felt that the trust and love given by every user who chooses Huawei's P series is tantamount to a powerful driving force, always inspiring Huawei to move forward firmly on the road of innovation. Pura means pure.

According to news on October 12, Russia has made important progress in the field of microelectronics. The Russian Ministry of Industry and Trade recently proposed a new microelectronics development roadmap aimed at improving the country's semiconductor technology level. It is understood that Russian microelectronics companies are currently able to produce chip products with a 130-nanometer process, and their new goal is to achieve large-scale production of 65-nanometer chips in 2026, followed by plans to manufacture 28-nanometer chips domestically in 2027, and in The move to achieve mass production of 14nm chips by 2030 has been highly praised by local experts, who believe that these technological advances will help Russia produce affordable laptops based on open source technologies such as Linux and RISC-V. Last year, the Russian government

According to news on December 3, Changan Automobile recently revealed the latest progress of its solid-state battery plan in its latest investor relations activity record. Changan Automobile is currently actively developing new electrolyte materials for semi-solid batteries and solid-state batteries, as well as key processes. According to our understanding, the company plans to gradually promote the development of solid-state batteries based on vehicle demand, and plans to gradually mass-produce applications from 2025. According to the editor's understanding, Changan Automobile is committed to improving the weight and energy density of batteries in the research and development of solid-state batteries. It is expected to reach 350-500 Wh/kg, and the volume energy density is also expected to reach 750-1000 Wh/L. It is expected that this new type of battery will be fully popularized by 2030. In addition, Changan Automobile is also developing lithium-sulfur batteries.

According to news on April 18, just now, Huawei officially launched the Pioneer Plan of Huawei Pura70 series. Huawei Pura70 Ultra is equipped with the industry's first super zoom periscope camera, allowing users to take incredible close and long-range photos without reducing image quality. This series also has an ultra-high-speed wind speed flash function, breaking the record for shooting speed. These new features allow photographers to get closer when shooting while maintaining high-quality images. The HUAWE IPura70 series is pre-installed with HarmonyOS4.2, providing a more interesting, smart and smooth flagship experience. The Beidou satellite messaging function has been upgraded to support sending picture messages to achieve more expressive communication. The series also supports AIAi

According to news on July 6, Apple China has recently made adjustments to its AppleTradeIn redemption plan, bringing good news to old users of Apple devices. According to the editor's understanding, in this plan, the trade-in deduction amount for iPhone, Mac, iPad and other devices has been increased. For iPhone products, the maximum discount amount for iPhone 13 Pro Max is 5,500 yuan, iPhone 13 Pro is 4,900 yuan, iPhone 13 is 3,350 yuan, iPhone 13 mini is 3,000 yuan, while the maximum discount amount for iPhone 12 Pro Max is 3,800 yuan, and the newly released iPhone SE No. The third generation

Recently, Google announced that it will terminate the Google Play Security Reward Program (GPSRP), which has been running for nearly 7 years, on August 31, 2024. This decision is based on the significant improvement in the security of the Android system. In an email to developers pointed out that as the security of the Android operating system has been enhanced and its functions have been hardened, the number of vulnerabilities available for security researchers to exploit has decreased, so the GPSRP program is no longer needed. 1. According to the plan, all vulnerability reports submitted before August 31 will be evaluated before September 15, and the final reward decision will be announced before the end of September. Google expressed its gratitude to the researchers who participated in the GPSRP and promised All submitted vulnerability reports will be reviewed and processed to ensure

Costudy is a software that focuses on time planning and mainly helps users better manage their daily time. If you want to better organize your daily time, Costudy is a very practical tool. Through Costudy, users can easily create task lists, set time reminders and arrange schedules to achieve efficient time management. So how do you make your own plans in Costudy? Players who want to know, please follow the article below. Let’s learn about the tutorials and strategies every month. How to make a plan in "costudy": 1. First, open costume and click "Diary" on the right. 2. Enter the diary page and click Add Today’s To-Do in the upper right corner. 3. Set today’s learning goals and click
