What is an index?A database index is a data structure that increases the speed of data retrieval operations on a database table at the cost of additional writes and storage space. In layman's terms, an index is similar to the table of contents of a book, and you can quickly find the content you need based on the page numbers recorded in it. ——What are the common indexes in Wikipedia?
Here we take a relatively complex combination as an example to introduce how to optimize it. Leftmost prefix matching principleFirst of all, we need to know what the leftmost prefix matching principle is. The leftmost prefix matching principle means that when using a B+Tree joint index for data retrieval, the MySQL optimizer will read the predicate (filter condition) and match rightward in the order in which the joint index fields are created until a range query or a non-equal query is encountered. The index columns after this field will not be used. At this time, calculating How to calculate key_len The Before calculating
The test data table is as follows: CREATE TABLE `test_table` ( `id` int(11) NOT NULL AUTO_INCREMENT, `a` int(11) DEFAULT NOT NULL, `b` int(11) DEFAULT NOT NULL, `c` int(11) DEFAULT NOT NULL, PRIMARY KEY (`id`), KEY `test_table_a_b_c_index` (`a`,`b`,`c`) )ENGINE=InnoDB DEFAULT CHARSET=utf8; Hit Index: mysql> explain select * from test_table where a = 1 and b = 2 and c = 3; +----+-------------+------------+------------+------+------------------------+------------------------+---------+-------------------+------+----------+-------------+ | id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered | Extra | +----+-------------+------------+------------+------+------------------------+------------------------+---------+-------------------+------+----------+-------------+ | 1 | SIMPLE | test_table | NULL | ref | test_table_a_b_c_index | test_table_a_b_c_index | 12 | const,const,const | 1 | 100.00 | Using index | +----+-------------+------------+------------+------+------------------------+------------------------+---------+-------------------+------+----------+-------------+ You can see Whether NULL is allowed. If NULL is allowed, an extra byte is needed to mark the field. Different data types require different byte sizes. mysql> ALTER TABLE `test_table` CHANGE `a` `a` INT(11) NULL; mysql> ALTER TABLE `test_table` CHANGE `c` `c` INT(11) NULL; mysql> ALTER TABLE `test_table` CHANGE `b` `b` INT(11) NULL; mysql> explain select * from test_table where a = 1 and b = 2 and c = 3; +----+-------------+------------+------------+------+------------------------+------------------------+---------+-------------------+------+----------+-------------+ | id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered | Extra | +----+-------------+------------+------------+------+------------------------+------------------------+---------+-------------------+------+----------+-------------+ | 1 | SIMPLE | test_table | NULL | ref | test_table_a_b_c_index | test_table_a_b_c_index | 15 | const,const,const | 1 | 100.00 | Using index | +----+-------------+------------+------------+------+------------------------+------------------------+---------+-------------------+------+----------+-------------+ It can be seen that when the field is allowed to be empty, Index optimizationWith these basic knowledge, we can judge the performance based on the actual SQL. Taking the above data table as an example, create a joint index for the three fields a, b, and c.
Usually when viewing an execution plan, if the Extra column is Using index, it means that the optimizer uses a covering index.
Create an index specification
The above is the details of how to design and optimize MySQL indexes. For more information on MySQL index design and optimization, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
<<: img usemap attribute China map link
>>: Three ways to communicate between React components (simple and easy to use)
The original code is this: <div class='con...
Basics The matching order of location is "ma...
Horizontal scrolling isn’t appropriate in all situ...
Icon icon processing solution The goal of this re...
jQuery form validation example / including userna...
Introduction MySQL achieves high availability of ...
Recently, when I was doing a practice project, I ...
Preface: Docker port mapping is often done by map...
This article mainly introduces three methods of i...
In this article, we will learn about the optimiza...
Preface I don't know how long this friend has...
Table of contents 1. Pre-analysis 1. Variable pre...
1: Statement order of grouping function 1 SELECT ...
I think editors are divided into two categories, ...
Preface I just started learning MySQL and downloa...