For any DBMS, indexes are the most important factor for optimization. For a small amount of data, not having a suitable index does not have a big impact, but as the amount of data increases, performance will drop sharply. If you index multiple columns (composite index), the order of the columns is very important. MySQL can only effectively search for a prefix of the leftmost column of the index. For example: Assume that there is a composite index (c1, c2), the query For example: select b.ISBN FROM book b where b.CATEGORY_ID = 1; Execution time: 0.053s Use explain to analyze the SQL: type = ALL Extra=Using where, the full table query does not use the index. EXPLAIN shows how MySQL uses indexes to process select statements and join tables. It can help choose better indexes and write more optimized query statements. ALL For each combination of rows from the previous tables, a full table scan is performed. This is usually bad if the table is the first table not marked const, and is usually very bad in other cases. Often you can add more indexes instead of using ALL so that rows can be retrieved based on constant values or column values in the previous table. Create a composite index: Execute the SQL again and find that the time is shortened to 0.009s Use explain to analyze the SQL: type = ref, Extra = Using index Index query is used. ref For each combination of rows from the previous tables, all rows with matching index values will be read from this table. If the join uses only a leftmost prefix of the key, or if the key is not UNIQUE or PRIMARY KEY (in other words, if the join cannot select a single row based on the key), then ref is used. This join type is good if the keys used match only a small number of rows. This is the end of this article about the detailed explanation of the combined index method of MySQL. For more relevant MySQL combined index content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Linux uses suid vim.basic file to achieve privilege escalation
>>: Vue uses OSS to upload pictures or attachments
Since the problem occurred rather suddenly and th...
Table of contents 1. some 2. every 3. find 1. som...
Table of contents How to set cookies Disadvantage...
Table of contents Passing parameters between pare...
Use the browser (webdriver)-based selenium techno...
Original address: https://blog.csdn.net/m0_465798...
Normally, when a deadlock occurs, the connection ...
The final result is like this, isn’t it cute… PS:...
As shown below: The test command determines wheth...
This article example shares the specific code of ...
Nowadays, tabs are widely used in web design, but...
Step 1: Install Stow In this example, we are usin...
Table of contents DOM processing Arrays method Su...
question Question 1: How to solve the performance...
Preface: js is a single-threaded language, so it ...