A brief understanding of the three principles of adding MySQL indexes

A brief understanding of the three principles of adding MySQL indexes

1. The Importance of Indexes

Indexes are used to quickly find rows that have a specific value in a column. Without an index, MySQL must start at record 1 and read the entire table until it finds the relevant rows. The larger the table, the more time it takes. If the table column being queried has an index, MySQL can quickly get to a position to search in the middle of the data file without having to look at all the data. Note that if you need to access a large portion of rows, sequential reads are much faster, since we avoid disk seeks this time.

If you use the Xinhua Dictionary to look up the Chinese character "张" without using the table of contents, you may have to search from the first page of the Xinhua Dictionary to the last page, which may take two hours. The thicker the dictionary, the more time you will spend. Now you use the directory to look for the Chinese character "张". The first letter of 张 is z. Chinese characters starting with z start from more than 900 pages. With this clue, it may only take you one minute to find a Chinese character. This shows the importance of indexing. But does it mean the more indexes you create, the better? Of course not. If the directory of a book is divided into several levels, I think you will feel dizzy.

2. Preparation

//Prepare two test tablesmysql> CREATE TABLE `test_t` ( 
-> `id` int(11) NOT NULL auto_increment, 
-> `num` int(11) NOT NULL default '0', 
-> `d_num` varchar(30) NOT NULL default '0', 
-> PRIMARY KEY (`id`) 
-> ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; 
Query OK, 0 rows affected (0.05 sec) 
mysql> CREATE TABLE `test_test` ( 
-> `id` int(11) NOT NULL auto_increment, 
-> `num` int(11) NOT NULL default '0', 
-> PRIMARY KEY (`id`) 
-> ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; 
Query OK, 0 rows affected (0.05 sec) 
//Create a stored procedure to facilitate data insertionmysql> delimiter | 
mysql> create procedure i_test(pa int(11),tab varchar(30)) 
-> begin 
-> declare max_num int(11) default 100000; 
-> declare i int default 0; 
-> declare rand_num int; 
-> declare double_num char; 
-> 
-> if tab != 'test_test' then 
-> select count(id) into max_num from test_t; 
-> while i < pa do 
-> if max_num < 100000 then 
-> select cast(rand()*100 as unsigned) into rand_num; 
-> select concat(rand_num,rand_num) into double_num; 
-> insert into test_t(num,d_num)values(rand_num,double_num); 
-> end if; 
-> set i = i +1; 
-> end while; 
-> else 
-> select count(id) into max_num from test_test; 
-> while i < pa do 
-> if max_num < 100000 then 
-> select cast(rand()*100 as unsigned) into rand_num; 
-> insert into test_test(num)values(rand_num); 
-> end if; 
-> set i = i +1; 
-> end while; 
-> end if; 
-> end| 
Query OK, 0 rows affected (0.00 sec) 
mysql> delimiter; 
mysql> show variables like "%pro%"; // Check whether profiling is enabled. It is disabled by default. +---------------------------+-------+ 
| Variable_name | Value | 
+---------------------------+-------+ 
| profiling | OFF | 
| profiling_history_size | 15 | 
| protocol_version | 10 | 
| slave_compressed_protocol | OFF | 
+---------------------------+-------+ 
4 rows in set (0.00 sec) 
mysql> set profiling=1; //After turning it on, it is to compare the execution time after adding the index. Query OK, 0 rows affected (0.00 sec)

3. Examples

1. There is too little data in a single table, and the index will affect the speed

mysql> call i_test(10,'test_t'); //Insert 10 conditions into the test_t table Query OK, 1 row affected (0.02 sec) 
mysql> select num from test_t where num!=0; 
mysql> explain select num from test_t where num!=0\G; 
*************************** 1. row *************************** 
id: 1 
select_type: SIMPLE 
table: test_t 
type: ALL 
possible_keys: NULL 
key: NULL 
key_len: NULL 
ref: NULL 
rows: 10 
Extra: Using where 
1 row in set (0.00 sec) 
ERROR: 
No query specified 
mysql> create index num_2 on test_t (num); 
Query OK, 10 rows affected (0.19 sec) 
Records: 10 Duplicates: 0 Warnings: 0 
mysql> select num from test_t where num!=0; 
mysql> explain select num from test_t where num!=0\G; 
*************************** 1. row *************************** 
id: 1 
select_type: SIMPLE 
table: test_t 
type: index 
possible_keys: num_2 
key: num_2 
key_len: 4 
ref: NULL 
rows: 10 
Extra: Using where; Using index 
1 row in set (0.00 sec) 
ERROR: 
No query specified 
mysql> show profiles; 
+----------+------------+---------------------------------------------+ 
| Query_ID | Duration | Query | 
+----------+------------+---------------------------------------------+ 
| 1 | 0.00286325 | call i_test(10,'test_t') | //Insert ten records | 2 | 0.00026350 | select num from test_t where num!=0 | 
| 3 | 0.00022250 | explain select num from test_t where num!=0 | 
| 4 | 0.18385400 | create index num_2 on test_t (num) | //Create index| 5 | 0.00127525 | select num from test_t where num!=0 | //After using the index, it is almost 0.2 times that of not using the index| 6 | 0.00024375 | explain select num from test_t where num!=0 | 
+----------+------------+---------------------------------------------+ 
6 rows in set (0.00 sec)

explain:

  • id: indicates the order in which sql is executed
  • select_type: SIMPLE, PRIMARY, UNION, DEPENDENT UNION, UNION RESULT, SUBQUERY, DEPENDENT SUBQUERY, DERIVED Different query statements will have different select_type
  • table: indicates the name of the table to be searched
  • type : indicates the type of index to use, or whether to use an index. The efficiency ranges from high to low: const, eq_reg, ref, range, index, and ALL. In fact, this is directly related to the way you write SQL. For example, if you can use the primary key, use the primary key. Add an index to the condition after where. If it is unique, add a unique index.
  • possible_keys : possible indexes
  • key : Use index
  • key_len : the length of the index to use
  • ref: Which column or constant is used together with the key to select rows from the table. This is usually required when performing a multi-table joint query.
  • rows : the number of rows found
  • Extra: Additional instructions

Some time ago, I wrote a blog post about which is better, MySQL distinct or group by. A friend left a message saying that the test results were different from the test results I did at that time. At that time, I explained it with an analogy. Today, I have time to express the working principle of the index more intuitively in the form of examples.

2. When filtering with conditions after where, such as order by, group by, etc., it is best to add indexes to the following fields. Select PRIMARY KEY, UNIQUE, INDEX and other indexes based on actual conditions, but the more the better. Be moderate.

3. When performing multi-table operations such as joint queries and subqueries, related fields must be indexed

mysql> call i_test(10,'test_test'); //Insert 10 records into the test_test table Query OK, 1 row affected (0.02 sec) 
mysql> explain select a.num as num1,b.num as num2 from test_t as a left join tes 
t_test as b on a.num=b.num\G; 
*************************** 1. row *************************** 
id: 1 
select_type: SIMPLE 
table: a 
type: index 
possible_keys: NULL 
key: num_2 
key_len: 4 
ref: NULL 
rows: 10 
Extra: Using index 
*************************** 2. row *************************** 
id: 1 
select_type: SIMPLE 
table: b 
type: ref 
possible_keys: num_1 
key: num_1 
key_len: 4 
ref: bak_test.a.num //bak_test is the database name, a.num is a field of test_t rows: 1080 
Extra: Using index 
2 rows in set (0.01 sec) 
ERROR: 
No query specified

When the amount of data is particularly large, it is best not to use joint queries, even if you have indexed them.

The above is just a brief personal summary, intended to stimulate discussion.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • In-depth analysis of the leftmost matching principle of MySQL joint index
  • Detailed explanation of MySQL combined index and leftmost matching principle
  • A brief discussion on MySQL index design principles and the differences between common indexes
  • MySQL index leftmost principle example code
  • Understand MySQL index creation principles in one article

<<:  Example of writing mobile H5 to invoke APP (IOS, Android)

>>:  How to configure virtual user login in vsftpd

Recommend

Set the width of the table to be fixed so that it does not change with the text

After setting the table width in the page to width...

Detailed explanation of Angular routing sub-routes

Table of contents 1. Sub-route syntax 2. Examples...

MySQL 8.0.16 Win10 zip version installation and configuration graphic tutorial

This article shares with you the installation and...

Web developers are concerned about the coexistence of IE7 and IE8

I installed IE8 today. When I went to the Microso...

Docker Compose installation and usage steps

Table of contents 1. What is Docker Compose? 2. D...

...

The whole process of installing mysql5.7.22 under ARM64 architecture

MySQL download address: https://obs.cn-north-4.my...

How to use MySQL group by and order by together

Suppose there is a table: reward (reward table), ...

Vue3.0+vite2 implements dynamic asynchronous component lazy loading

Table of contents Create a Vite project Creating ...

The meaning and usage of linux cd

What does linux cd mean? In Linux, cd means chang...

Ubuntu 16.04 image complete installation tutorial under VMware

This article shares with you the installation tut...

Linux directory switching implementation code example

Switching files is a common operation in Linux. W...

Implementation of CSS dynamic height transition animation effect

This question originated from a message on Nugget...