1. How MySQL uses indexesIndexes are used to quickly find rows with specific column values. Without an index, MySQL must start at the first row and then walk the entire table to find the relevant rows. The bigger the table, the more it costs. If the table has an index on the relevant columns, MySQL can quickly determine where to look in the middle of the data file without having to look through all the data. This is much faster than reading each row sequentially. Most MySQL indexes (PRIMARY KEY, UNIQUE, INDEX, and FULLTEXT) are stored in B-trees. Exceptions: Indexes on spatial data types use R-trees; MEMORY tables also support hash indexes. InnoDB uses inverted lists for FULLTEXT indexes. MySQL uses indexes to do the following:
Finally, indexes are less important for queries on small tables. When a query needs to access most rows, sequential reads are faster than processing indexes. 2. Avoid full table scansWhen MySQL uses a full table scan to resolve a query, the output from EXPLAIN displays ALL in the type column. This usually happens when:
For small tables, a table scan is usually appropriate and has a negligible impact on performance. For large tables, you can try the following techniques to avoid the optimizer incorrectly choosing a table scan:
3. Column IndexThe B-tree data structure enables indexes to quickly find a specific value, a set of values, or a range of values corresponding to operators such as =, >, ≤, BETWEEN, IN, etc. in a WHERE clause. Each storage engine defines the maximum number of indexes and the maximum index length per table. All storage engines support at least 16 indexes per table, and the total index length is at least 256 bytes. Index prefixUse col_name(N) to create an index using only the first N characters of a column. In InnoDB tables, the maximum prefix length is 767 bytes. Full-text indexFULLTEXT indexes are used for full-text searches. FULLTEXT indexes are supported only for the InnoDB and MyISAM storage engines, and only for CHAR, VARCHAR, and TEXT columns. Indexing is always done on the entire column, and column prefix indexes are not supported. Spatial indexRefers to a data structure that is arranged in a certain order based on the position and shape of spatial objects or a certain spatial relationship between spatial objects. Indexes on the MEMORY storage engineBy default, the MEMORY storage engine uses HASH indexes, but also supports BTREE indexes. 4. Multi-column indexMySQL can create composite indexes (that is, indexes on multiple columns). An index can contain up to 16 columns. Suppose there is a representation defined like this: CREATE TABLE test ( id INT NOT NULL, last_name CHAR(30) NOT NULL, first_name CHAR(30) NOT NULL, PRIMARY KEY (id), INDEX idx_name (last_name,first_name) ); The idx_name index is an index built on the last_name and first_name columns. This index can be used for queries that specify a combination of last_name and first_name values, or for queries that specify only last_name values, because this index matches the leftmost prefix. Therefore, the idx_name index can be used for the following queries: SELECT * FROM test WHERE last_name='Jones'; SELECT * FROM test WHERE last_name='Jones' AND first_name='John'; SELECT * FROM test WHERE last_name='Jones' AND (first_name='John' OR first_name='Jon'); SELECT * FROM test WHERE last_name='Jones' AND first_name >='M' AND first_name < 'N'; However, the idx_name index cannot be used for the following queries: SELECT * FROM test WHERE first_name='John'; SELECT * FROM test WHERE last_name='Jones' OR first_name='John'; Consider the following SQL: SELECT * FROM tbl_name WHERE col1=val1 AND col2=val2; If a multi-column index exists on col1 and col2, then the appropriate rows can be fetched directly. If separate single-column indexes exist on col1 and col2, the optimizer will attempt to use the index merge optimization, or find the most restrictive index by determining which index needs to exclude more rows, and use that index to fetch the rows. If the table has a multicolumn index, the optimizer can use any leftmost prefix of the index to find rows. For example, if you have a three-column index (col1, col2, col3), then you have index search capabilities on (col1), (col1, col2), (col1, col2, col3). If the columns do not form a leftmost prefix of the index, MySQL cannot use the index to perform the lookup. Look at the following SQL statement: SELECT * FROM tbl_name WHERE col1=val1; SELECT * FROM tbl_name WHERE col1=val1 AND col2=val2; SELECT * FROM tbl_name WHERE col2=val2; SELECT * FROM tbl_name WHERE col2=val2 AND col3=val3; If there is a composite index on (col1, col2, col3), then only the first two queries will use it. Then the last two queries will not use the index to perform the lookup because (col2) and (col2, col3) are not leftmost prefixes of (col1, col2, col3). 5. Comparison of B-Tree and Hash indexesB-tree index characteristicsB-tree indexes can be used for column comparisons in expressions that use the =, >, >=, <, <=, and BETWEEN operators. The index can also be used for LIKE comparisons if the argument to LIKE is a constant string that does not start with a wildcard character. The following clauses do not use indexes: /* the LIKE value begins with a wildcard character */ SELECT * FROM tbl_name WHERE key_col LIKE '%Patrick%'; /* the LIKE value is not a constant */ SELECT * FROM tbl_name WHERE key_col LIKE other_col; Any index that does not cover all AND levels in the WHERE clause will not be used to optimize the query. In other words, in order to be able to use an index, a prefix of the index must be used in each AND group. The following WHERE clauses use indexes: ... WHERE index_part1=1 AND index_part2=2 AND other_column=3 /* index = 1 OR index = 2 */ ... WHERE index=1 OR A=10 AND index=2 /* optimized like "index_part1='hello'" */ ... WHERE index_part1='hello' AND index_part3=5 /* Can use index on index1 but not on index2 or index3 */ ... WHERE index1=1 AND index2=2 OR index1=3 AND index3=3; The following WHERE clauses do not use indexes: /* index_part1 is not used */ ... WHERE index_part2=1 AND index_part3=2 /* Index is not used in both parts of the WHERE clause */ ... WHERE index=1 OR A=10 /* No index spans all rows */ ... WHERE index_part1=1 OR index_part2=10 Sometimes MySQL does not use an index even though one is available. One possible reason for this to occur is that the optimizer estimates that using the index will require accessing a large percentage of the rows in the table. (In this case, a table scan might be faster because it requires fewer lookups.) However, if such a query uses LIMIT to retrieve only certain rows, MySQL still uses the index because it can find the few rows to return more quickly. Hash index characteristicsHash indexes have some different characteristics from the indexes just discussed:
B-treeTree data structure, widely used in database indexing. The structure is always kept in order, allowing fast lookups for exact matches (equals operators) and ranges (for example, greater than, less than, and BETWEEN operators). Such indexes are available for most storage engines, such as InnoDB and MyISAM. Because a B-tree node can have many children, a B-tree is different from a binary tree, where each node can have at most 2 children. Use of the term B-tree is intended to refer to a general class of index designs. The B-tree structure used by the MySQL storage engine might be considered a variant due to complexities not present in the classic B-tree design. Hash indexA type of index designed for queries that use the equality operator instead of the range operator. It can be used for MEMORY tables. Although hash indexes are the default index for MEMORY tables for historical reasons, the storage engine also supports B-tree indexes, which are generally a better choice for general-purpose queries. 6. Optimize data sizeDesign tables so that they take up minimal space on disk. This can provide a huge improvement by reducing the amount of data written to and read from disk. Smaller tables generally require less main memory when processing their contents during query execution. Any space reduction for the table data results in smaller indexes, which can be processed faster. MySQL supports many different storage engines (table types) and row formats. For each table, you can decide which storage and indexing method to use. Choosing the appropriate table format for your application can significantly improve performance. Table Columns
Row FormatTo further reduce space by storing table data in compressed form, specify ROW_FORMAT=COMPRESSED when creating an InnoDB table. Indexes
Joins Declare columns with identical information in different tables with the same data type to speed up joins based on corresponding columns. NormalizationGenerally, try to keep all data non-redundant (called third normal form in database theory). Assign them unique IDs instead of one lengthy repetitive value, repeat those IDs in as many smaller tables as needed, and join the tables in queries by referencing the IDs in the join clause. 7. Optimize data typesNumeric TypesIt is better to use numeric values rather than strings to uniquely identify rows because large numbers take up fewer bytes of storage than the corresponding strings, so transferring and comparing them is faster and takes up less memory. Character and string types
other
The above is the details of how to optimize MySQL indexes. For more information about MySQL index optimization, please pay attention to other related articles on 123WORDPRESS.COM! You may also be interested in:
|
>>: Robots.txt detailed introduction
Table of contents 1. Overview 2. Memory Managemen...
This article describes the MySQL integrity constr...
introduce Vue Router is the official routing mana...
There are two types of html tags, inline elements...
MySQL is a relatively easy-to-use relational data...
Table of contents 1. Introduction 2. Main text 2....
Log in docker login Complete the registration and...
Method 1 Copy code The code is as follows: documen...
<br />Without any warning, I saw news on cnB...
1. Use CSS, jQuery, and Canvas to create animatio...
Table of contents Preface 1. Split a string 2. JS...
This article introduces an example of how to use ...
Table of contents Create a simple springboot proj...
Table of contents background Server Dependencies ...
Background: Make a little progress every day, acc...