This document starts out trivial and perhaps boring, but builds up to more interesting information, perhaps things you did not realize about how MariaDB and MySQL indexing works.
This also explains EXPLAIN (to some extent).
(Most of this applies to non-MySQL brands of databases, too.)
The question is "When was Andrew Johnson president of the US?".
The available table `Presidents` looks like:
+-----+------------+----------------+-----------+ | seq | last_name | first_name | term | +-----+------------+----------------+-----------+ | 1 | Washington | George | 1789-1797 | | 2 | Adams | John | 1797-1801 | ... | 7 | Jackson | Andrew | 1829-1837 | ... | 17 | Johnson | Andrew | 1865-1869 | ... | 36 | Johnson | Lyndon B. | 1963-1969 | ...
("Andrew Johnson" was picked for this lesson because of the duplicates.)
What index(es) would be best for that question? More specifically, what would be best for
SELECT term FROM Presidents WHERE last_name = 'Johnson' AND first_name = 'Andrew';
Some INDEXes to try...
Well, I am fudging a little here. I have a PRIMARY KEY on `seq`, but that has no advantage on the query we are studying.
mysql> SHOW CREATE TABLE Presidents \G CREATE TABLE `presidents` ( `seq` tinyint(3) unsigned NOT NULL AUTO_INCREMENT, `last_name` varchar(30) NOT NULL, `first_name` varchar(30) NOT NULL, `term` varchar(9) NOT NULL, PRIMARY KEY (`seq`) ) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8 mysql> EXPLAIN SELECT term FROM Presidents WHERE last_name = 'Johnson' AND first_name = 'Andrew'; +----+-------------+------------+------+---------------+------+---------+------+------+-------------+ | id | select_type | table | type | possible_keys | key | key_len | ref | rows | Extra | +----+-------------+------------+------+---------------+------+---------+------+------+-------------+ | 1 | SIMPLE | Presidents | ALL | NULL | NULL | NULL | NULL | 44 | Using where | +----+-------------+------------+------+---------------+------+---------+------+------+-------------+ # Or, using the other form of display: EXPLAIN ... \G id: 1 select_type: SIMPLE table: Presidents type: ALL <-- Implies table scan possible_keys: NULL key: NULL <-- Implies that no index is useful, hence table scan key_len: NULL ref: NULL rows: 44 <-- That's about how many rows in the table, so table scan Extra: Using where
First, let's describe how InnoDB stores and uses indexes.
For MyISAM, the PRIMARY KEY is not stored with the data, so think of it as being a secondary key (over-simplified).
The novice, once he learns about indexing, decides to index lots of columns, one at a time. But...
MySQL rarely uses more than one index at a time in a query. So, it will analyze the possible indexes.
mysql> EXPLAIN SELECT term FROM Presidents WHERE last_name = 'Johnson' AND first_name = 'Andrew' \G select_type: SIMPLE table: Presidents type: ref possible_keys: last_name, first_name key: last_name key_len: 92 <-- VARCHAR(30) utf8 may need 2+3*30 bytes ref: const rows: 2 <-- Two 'Johnson's Extra: Using where
OK, so you get really smart and decide that MySQL should be smart enough to use both name indexes to get the answer. This is called "Intersect". 1. Using INDEX(last_name), find 2 index entries with last_name = 'Johnson'; get (7, 17) 2. Using INDEX(first_name), find 2 index entries with first_name = 'Andrew'; get (17, 36) 3. "And" the two lists together (7,17) & (17,36) = (17) 4. Reach into the data using seq = (17) to get the row for Andrew Johnson. 5. Deliver the answer (1865-1869).
id: 1 select_type: SIMPLE table: Presidents type: index_merge possible_keys: first_name,last_name key: first_name,last_name key_len: 92,92 ref: NULL rows: 1 Extra: Using intersect(first_name,last_name); Using where
The EXPLAIN fails to give the gory details of how many rows collected from each index, etc.
This is called a "compound" or "composite" index since it has more than one column. 1. Drill down the BTree for the index to get to exactly the index row for Johnson+Andrew; get seq = (17). 2. Reach into the data using seq = (17) to get the row for Andrew Johnson. 3. Deliver the answer (1865-1869). This is much better. In fact this is usually the "best".
ALTER TABLE Presidents (drop old indexes and...) ADD INDEX compound(last_name, first_name); id: 1 select_type: SIMPLE table: Presidents type: ref possible_keys: compound key: compound key_len: 184 <-- The length of both fields ref: const,const <-- The WHERE clause gave constants for both rows: 1 <-- Goodie! It homed in on the one row. Extra: Using where
Surprise! We can actually do a little better. A "Covering" index is one in which _all_ of the fields of the SELECT are found in the index. It has the added bonus of not having to reach into the "data" to finish the task. 1. Drill down the BTree for the index to get to exactly the index row for Johnson+Andrew; get seq = (17). 2. Deliver the answer (1865-1869). The "data" BTree is not touched; this is an improvement over "compound".
... ADD INDEX covering(last_name, first_name, term); id: 1 select_type: SIMPLE table: Presidents type: ref possible_keys: covering key: covering key_len: 184 ref: const,const rows: 1 Extra: Using where; Using index <-- Note
Everything is similar to using "compound", except for the addition of "Using index".
INDEX(last, first) ... WHERE last = '...' -- good (even though `first` is unused) ... WHERE first = '...' -- index is useless INDEX(first, last), INDEX(last, first) ... WHERE first = '...' -- 1st index is used ... WHERE last = '...' -- 2nd index is used ... WHERE first = '...' AND last = '...' -- either could be used equally well INDEX(last, first) Both of these are handled by that one INDEX: ... WHERE last = '...' ... WHERE last = '...' AND first = '...' INDEX(last), INDEX(last, first) In light of the above example, don't bother including INDEX(last).
Refreshed -- Oct, 2012; more links -- Nov 2016
Rick James graciously allowed us to use this article in the Knowledge Base.
Rick James' site has other useful tips, how-tos, optimizations, and debugging tips.
Original source: http://mysql.rjweb.org/doc.php/index1
© 2019 MariaDB
Licensed under the Creative Commons Attribution 3.0 Unported License and the GNU Free Documentation License.
https://mariadb.com/kb/en/compound-composite-indexes/